Skip to content

Commit 6890cd0

Browse files
committed
Polish
1 parent 405ca6a commit 6890cd0

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

mybatis-spring-boot-test-autoconfigure/src/test/java/org/mybatis/spring/boot/test/autoconfigure/ExampleComponent.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@
2626
*/
2727
@Component
2828
public class ExampleComponent {
29+
2930
}

mybatis-spring-boot-test-autoconfigure/src/test/java/org/mybatis/spring/boot/test/autoconfigure/ExampleMybatisApplication.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@
2626
*/
2727
@SpringBootApplication
2828
class ExampleMybatisApplication {
29+
2930
}

mybatis-spring-boot-test-autoconfigure/src/test/java/org/mybatis/spring/boot/test/autoconfigure/MybatisTestIntegrationTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,5 @@ public void didNotInjectExampleComponent() {
9797
this.thrown.expect(NoSuchBeanDefinitionException.class);
9898
this.applicationContext.getBean(ExampleComponent.class);
9999
}
100+
100101
}

mybatis-spring-boot-test-autoconfigure/src/test/java/org/mybatis/spring/boot/test/autoconfigure/Sample.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,5 @@ public String getName() {
4242
public void setName(String name) {
4343
this.name = name;
4444
}
45+
4546
}

mybatis-spring-boot-test-autoconfigure/src/test/java/org/mybatis/spring/boot/test/autoconfigure/SampleMapper.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@
2828
public interface SampleMapper {
2929

3030
Sample findByname(String name);
31+
3132
}

0 commit comments

Comments
 (0)