bael-4197: indent with spaces instead of tab
This commit is contained in:
@@ -9,7 +9,7 @@ import org.springframework.context.annotation.ImportResource;
|
||||
public class XmlBeanApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(XmlBeanApplication.class, args);
|
||||
SpringApplication.run(XmlBeanApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
|
||||
<bean id="employeeServiceImpl" class="com.baeldung.xmlapplicationcontext.service.EmployeeServiceImpl" />
|
||||
</beans>
|
||||
@@ -1,9 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="
|
||||
http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
|
||||
<bean id="employeeServiceTestImpl" class="com.baeldung.xmlapplicationcontext.service.EmployeeServiceTestImpl" />
|
||||
<bean id="employeeServiceTestImpl" class="com.baeldung.xmlapplicationcontext.service.EmployeeServiceTestImpl" />
|
||||
</beans>
|
||||
|
||||
Reference in New Issue
Block a user