Skip to content

Commit 2ad77b5

Browse files
committed
mapstruct#272 Adding line breaks at end of files
1 parent b37a1d2 commit 2ad77b5

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

integrationtest/src/test/resources/cdiTest/src/main/java/org/mapstruct/itest/cdi/DecoratedSourceTargetMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
public interface DecoratedSourceTargetMapper {
2828

2929
Target sourceToTarget(Source source);
30-
}
30+
}

integrationtest/src/test/resources/cdiTest/src/main/java/org/mapstruct/itest/cdi/SourceTargetMapperDecorator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ public Target sourceToTarget(Source source) {
3838
t.setFoo( 43L );
3939
return t;
4040
}
41-
}
41+
}

integrationtest/src/test/resources/cdiTest/src/test/java/org/mapstruct/itest/cdi/CdiBasedMapperTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ public void shouldInjectDecorator() {
7575
assertThat( target ).isNotNull();
7676
assertThat( target.getFoo() ).isEqualTo( Long.valueOf( 43 ) );
7777
}
78-
}
78+
}

integrationtest/src/test/resources/springTest/src/main/java/org/mapstruct/itest/spring/DecoratedSourceTargetMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
public interface DecoratedSourceTargetMapper {
2828

2929
Target sourceToTarget(Source source);
30-
}
30+
}

integrationtest/src/test/resources/springTest/src/main/java/org/mapstruct/itest/spring/SourceTargetMapperDecorator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ public Target sourceToTarget(Source source) {
3838
t.setFoo( 43L );
3939
return t;
4040
}
41-
}
41+
}

0 commit comments

Comments
 (0)