Skip to content

Commit a99131f

Browse files
committed
Polish resource files to all end with a new line
1 parent 3cee783 commit a99131f

File tree

92 files changed

+94
-83
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+94
-83
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

spring-boot-actuator/src/test/resources/cache/test-ehcache.xml

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

88
<cache name="players" maxEntriesLocalHeap="50"/>
99

10-
</ehcache>
10+
</ehcache>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

spring-boot-actuator/src/test/resources/logback.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
<appender-ref ref="CONSOLE" />
66
</root>
77
<!-- logger name="org.springframework.security" level="DEBUG"/-->
8-
</configuration>
8+
</configuration>

spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfigurationTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public void useDataDialect() throws Exception {
172172
this.context.refresh();
173173
TemplateEngine engine = this.context.getBean(TemplateEngine.class);
174174
Context attrs = new Context(Locale.UK, Collections.singletonMap("foo", "bar"));
175-
String result = engine.process("data-dialect", attrs);
175+
String result = engine.process("data-dialect", attrs).trim();
176176
assertThat(result).isEqualTo("<html><body data-foo=\"bar\"></body></html>");
177177
}
178178

@@ -183,7 +183,7 @@ public void useJava8TimeDialect() throws Exception {
183183
this.context.refresh();
184184
TemplateEngine engine = this.context.getBean(TemplateEngine.class);
185185
Context attrs = new Context(Locale.UK);
186-
String result = engine.process("java8time-dialect", attrs);
186+
String result = engine.process("java8time-dialect", attrs).trim();
187187
assertThat(result).isEqualTo("<html><body>2015-11-24</body></html>");
188188
}
189189

@@ -194,7 +194,7 @@ public void renderTemplate() throws Exception {
194194
this.context.refresh();
195195
TemplateEngine engine = this.context.getBean(TemplateEngine.class);
196196
Context attrs = new Context(Locale.UK, Collections.singletonMap("foo", "bar"));
197-
String result = engine.process("home", attrs);
197+
String result = engine.process("home", attrs).trim();
198198
assertThat(result).isEqualTo("<html><body>bar</body></html>");
199199
}
200200

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
INSERT INTO CITY (NAME, STATE, COUNTRY, MAP) values ('Washington', 'DC', 'US', 'Google');
1+
INSERT INTO CITY (NAME, STATE, COUNTRY, MAP) values ('Washington', 'DC', 'US', 'Google');

spring-boot-autoconfigure/src/test/resources/custom-schema.ldif

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ objectClasses: ( 1.3.6.1.4.1.32473.1.2.2
1414
SUP top
1515
AUXILIARY
1616
MAY exampleAttributeName
17-
X-ORIGIN 'Managing Schema Document' )
17+
X-ORIGIN 'Managing Schema Document' )
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
custom
1+
custom
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)