Skip to content

Commit

Permalink
#1082 Do not generate an empty line after method start for NestedProp…
Browse files Browse the repository at this point in the history
…ertyMappingMethod
  • Loading branch information
filiphr authored and gunnarmorling committed Feb 19, 2017
1 parent 9899504 commit 8dbcc43
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
-->
<#lt>private <@includeModel object=returnType/> ${name}(<#list parameters as param><@includeModel object=param/><#if param_has_next>, </#if></#list>) {

if ( ${sourceParameter.name} == null ) {
return ${returnType.null};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ public ChartEntry map(Chart name) {
}

private String songArtistLabelStudioCity(Song song) {

if ( song == null ) {
return null;
}
Expand All @@ -129,7 +128,6 @@ private String songArtistLabelStudioCity(Song song) {
}

private String songArtistLabelStudioName(Song song) {

if ( song == null ) {
return null;
}
Expand All @@ -153,7 +151,6 @@ private String songArtistLabelStudioName(Song song) {
}

private String songArtistName(Song song) {

if ( song == null ) {
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ protected void chartEntryToSong2(ChartEntry chartEntry, Song mappingTarget) {
}

private String chartSongTitle(Chart chart) {

if ( chart == null ) {
return null;
}
Expand All @@ -245,7 +244,6 @@ private String chartSongTitle(Chart chart) {
}

private String chartSongArtistLabelStudioCity(Chart chart) {

if ( chart == null ) {
return null;
}
Expand Down Expand Up @@ -273,7 +271,6 @@ private String chartSongArtistLabelStudioCity(Chart chart) {
}

private String chartSongArtistLabelStudioName(Chart chart) {

if ( chart == null ) {
return null;
}
Expand Down Expand Up @@ -301,7 +298,6 @@ private String chartSongArtistLabelStudioName(Chart chart) {
}

private String chartSongArtistName(Chart chart) {

if ( chart == null ) {
return null;
}
Expand All @@ -321,7 +317,6 @@ private String chartSongArtistName(Chart chart) {
}

private List<Integer> chartSongPositions(Chart chart) {

if ( chart == null ) {
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public FishTankDto map(FishTank source) {
}

private String fishTankFishType(FishTank fishTank) {

if ( fishTank == null ) {
return null;
}
Expand Down

0 comments on commit 8dbcc43

Please sign in to comment.