Skip to content

Commit

Permalink
remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
rjernst committed Oct 16, 2023
1 parent 2d0e23d commit 55f263d
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,9 @@ public static Build newBuild(Build existing, Map<String, Object> extraArgs) {
int i = 0;
for (var argComponent : argsComponents) {
Object value = argsOverrides.remove(argComponent.getName());
boolean containedValue = value != null;
if (value == null) {
value = argComponent.getAccessor().invoke(existing);
}
System.out.println(argComponent.getName() + " = " + value + (containedValue ? "" : " (original)"));
args[i++] = value;
}

Expand Down

0 comments on commit 55f263d

Please sign in to comment.