LilasCorner / jlootbox

Other
1 stars 0 forks source link

Consider using boolean instead of Boolean for t/f initialized parameters. #14

Open JohnTMurphy-NIU opened 2 years ago

JohnTMurphy-NIU commented 2 years ago

This is of very little consequence, but 'Boolean' objects are slightly heavier than boolean flags; if the Boolean objects were replaced with boolean (for example, line 61, "Boolean breakTies = params.getBoolean("breakTies");" becomes "boolean breakTies = params.getBoolean("breakTies");" this is more in keeping with Java's paradigm.