Skip to content

Commit

Permalink
Just diff boolean from the rest.
Browse files Browse the repository at this point in the history
  • Loading branch information
alesj committed Feb 19, 2009
1 parent 127c548 commit 15bc011
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public boolean getBooleanOption(String name)
{
if (option instanceof Boolean)
return (Boolean)option;
else if (option instanceof String)
else
return Boolean.parseBoolean(String.valueOf(option));
}
return false;
Expand Down

0 comments on commit 15bc011

Please sign in to comment.