Skip to content

Commit

Permalink
Remove trailing whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanjmullan committed Dec 2, 2024
1 parent fdc7dfd commit de301fb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public static boolean getBooleanSystemProp(String prop, boolean def, Debug dbg)
if ("".equals(rawPropVal)) {
return def;
}

String lower = rawPropVal.toLowerCase(Locale.ROOT);
if ("true".equals(lower)) {
return true;
Expand All @@ -166,8 +166,8 @@ public static boolean getBooleanSystemProp(String prop, boolean def, Debug dbg)
dbg.println("Warning: Unexpected value for " + prop +
": " + rawPropVal +
". Using default value: " + def);
}
}
return def;
}
}
}
}

0 comments on commit de301fb

Please sign in to comment.