Skip to content

Commit

Permalink
Only look up value once
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Sep 25, 2023
1 parent 95b4621 commit c3ab6fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public List<PolyValue> transformValueMap( Map<String, PolyValue> values ) {
if ( value == null ) {
throw new RuntimeException( "Missing named parameter: " + placeholder );
}
image.add( values.get( placeholder ) );
image.add( value );
}
return image;
}
Expand Down

0 comments on commit c3ab6fb

Please sign in to comment.