Skip to content

Commit

Permalink
Remove unnecessary boxing
Browse files Browse the repository at this point in the history
  • Loading branch information
douglm committed May 2, 2014
1 parent 82ea898 commit b218b31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ public boolean getBooleanReqPar(final String name,
boolean val = defVal;
Boolean valB = getBooleanReqPar(name);
if (valB != null) {
val = valB.booleanValue();
val = valB;
}

return val;
Expand Down

0 comments on commit b218b31

Please sign in to comment.