Skip to content

Commit b0093ef

Browse files
committed
TestXmlAppCtxHelper: Fix trailing white space
1 parent 63937ab commit b0093ef

File tree

1 file changed

+21
-22
lines changed

1 file changed

+21
-22
lines changed

spring-integration-xml/src/test/java/org/springframework/integration/xml/config/TestXmlApplicationContextHelper.java

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,27 @@
2525
*/
2626
public class TestXmlApplicationContextHelper {
2727

28-
private static final String header = """
29-
<?xml version='1.0' encoding='UTF-8'?>
30-
<beans xmlns='http://www.springframework.org/schema/beans'
31-
xmlns:si-xml='http://www.springframework.org/schema/integration/xml'
32-
xmlns:si='http://www.springframework.org/schema/integration'
33-
xmlns:util='http://www.springframework.org/schema/util'
34-
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
35-
xmlns:context='http://www.springframework.org/schema/context'
36-
xsi:schemaLocation='
37-
http://www.springframework.org/schema/beans
38-
https://www.springframework.org/schema/beans/spring-beans.xsd
39-
http://www.springframework.org/schema/integration
40-
https://www.springframework.org/schema/integration/spring-integration.xsd
41-
http://www.springframework.org/schema/integration/xml
42-
https://www.springframework.org/schema/integration/xml/spring-integration-xml.xsd
43-
http://www.springframework.org/schema/util
44-
https://www.springframework.org/schema/util/spring-util.xsd
45-
http://www.springframework.org/schema/context
46-
https://www.springframework.org/schema/context/spring-context.xsd'>
47-
48-
<context:annotation-config/>
49-
""";
28+
private static final String header =
29+
"""
30+
<?xml version='1.0' encoding='UTF-8'?>
31+
<beans xmlns='http://www.springframework.org/schema/beans'
32+
xmlns:si-xml='http://www.springframework.org/schema/integration/xml'
33+
xmlns:si='http://www.springframework.org/schema/integration'
34+
xmlns:util='http://www.springframework.org/schema/util'
35+
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
36+
xmlns:context='http://www.springframework.org/schema/context'
37+
xsi:schemaLocation='http://www.springframework.org/schema/beans
38+
https://www.springframework.org/schema/beans/spring-beans.xsd
39+
http://www.springframework.org/schema/integration
40+
https://www.springframework.org/schema/integration/spring-integration.xsd
41+
http://www.springframework.org/schema/integration/xml
42+
https://www.springframework.org/schema/integration/xml/spring-integration-xml.xsd
43+
http://www.springframework.org/schema/util
44+
https://www.springframework.org/schema/util/spring-util.xsd
45+
http://www.springframework.org/schema/context
46+
https://www.springframework.org/schema/context/spring-context.xsd'>
47+
<context:annotation-config/>
48+
""";
5049

5150
private static final String footer = "</beans>";
5251

0 commit comments

Comments
 (0)