Skip to content

Commit 0051326

Browse files
committed
[eol] Fix end of file markers
1 parent 7cab471 commit 0051326

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

src/site/site.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545

4646
<menu ref="reports"/>
4747
</body>
48-
</project>
48+
</project>

src/test/resources/org/mybatis/spring/annotation/override.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
#
1616

17-
myBean.name=MyBean!!
17+
myBean.name=MyBean!!

src/test/resources/org/mybatis/spring/annotation/scan.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
#
1616

17-
mybatis.lazy-initialization=true
17+
mybatis.lazy-initialization=true

src/test/resources/org/mybatis/spring/config/default-scope.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
#
1616

17-
mybatis.default-scope=thread
17+
mybatis.default-scope=thread

src/test/resources/org/mybatis/spring/config/lazy.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
#
1616

17-
mybatis.lazy-initialization=true
17+
mybatis.lazy-initialization=true

src/test/resources/org/mybatis/spring/config/override.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
#
1616

17-
myBean.name=MyBean!!
17+
myBean.name=MyBean!!

src/test/resources/org/mybatis/spring/filter/config/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
#
1616

1717
exclude-filters.regex=org\.mybatis\.spring\.filter\.datasource\.datasource1\..*
18-
exclude-filters.aspectj=*..CommonDataSourceMapper
18+
exclude-filters.aspectj=*..CommonDataSourceMapper

src/test/resources/org/mybatis/spring/filter/xml/default.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
filter.custom=org.mybatis.spring.filter.customfilter.CustomTypeFilter
1818
filter.aspectj=*..CommonDataSourceMapper
19-
filter.regex=org\.mybatis\.spring\.filter\.datasource\.datasource1\..*
19+
filter.regex=org\.mybatis\.spring\.filter\.datasource\.datasource1\..*

src/test/resources/org/mybatis/spring/submitted/autowire/BarMapper.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
<select id="executeBar" resultType="string">
2222
select * from Bar -- this should run on database Bar, but actually runs on Foo.
2323
</select>
24-
</mapper>
24+
</mapper>

src/test/resources/org/mybatis/spring/submitted/autowire/FooMapper.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
<select id="executeFoo" resultType="string">
2222
select * from Foo
2323
</select>
24-
</mapper>
24+
</mapper>

0 commit comments

Comments
 (0)