Skip to content

Commit

Permalink
Adjust fixtures to cover the fix that we are doing
Browse files Browse the repository at this point in the history
  • Loading branch information
filiphr committed Jul 6, 2024
1 parent 8bfeed0 commit 08d4e8e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public Target map(Source source, List<String> sourceIds) {
target.currentId = source.getUuid();
}
}
if ( isNotEmpty( sourceIds ) ) {
List<String> list = sourceIds;
List<String> list = sourceIds;
if ( list != null ) {
target.targetIds = new ArrayList<String>( list );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public Target map(Source source, List<String> sourceIds) {
target.currentId = source.getUuid();
}
}
List<String> list = sourceIds;
if ( list != null ) {
if ( isNotEmpty( sourceIds ) ) {
List<String> list = sourceIds;
target.targetIds = new ArrayList<String>( list );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public Target map(Source source, List<String> sourceIds) {
target.currentId = source.getUuid();
}
}
if ( isNotEmpty( sourceIds ) ) {
List<String> list = sourceIds;
List<String> list = sourceIds;
if ( list != null ) {
target.targetIds = new ArrayList<String>( list );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public Target map(Source source, List<String> sourceIds) {
target.currentId = source.getUuid();
}
}
List<String> list = sourceIds;
if ( list != null ) {
if ( isNotEmpty( sourceIds ) ) {
List<String> list = sourceIds;
target.targetIds = new ArrayList<String>( list );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public Target map(Source source, List<String> sourceIds) {
target.currentId = source.getUuid();
}
}
if ( isNotEmpty( sourceIds ) ) {
List<String> list = sourceIds;
List<String> list = sourceIds;
if ( list != null ) {
target.targetIds = new ArrayList<String>( list );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public Target map(Source source, List<String> sourceIds) {
if ( source != null ) {
target.currentId = source.getUuid();
}
List<String> list = sourceIds;
if ( list != null ) {
if ( isNotEmpty( sourceIds ) ) {
List<String> list = sourceIds;
target.targetIds = new ArrayList<String>( list );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public Target map(Source source, List<String> sourceIds) {
target.currentId = source.getUuid();
}
}
if ( isNotEmpty( sourceIds ) ) {
List<String> list = sourceIds;
List<String> list = sourceIds;
if ( list != null ) {
target.targetIds = new ArrayList<String>( list );
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ public Target map(Source source, List<String> sourceIds) {
if ( source != null ) {
target.currentId = source.getUuid();
}
List<String> list = sourceIds;
if ( list != null ) {
if ( isNotEmpty( sourceIds ) ) {
List<String> list = sourceIds;
target.targetIds = new ArrayList<String>( list );
}

Expand Down

0 comments on commit 08d4e8e

Please sign in to comment.