Statement unnecessarily nested within else clause.\

This commit is contained in:
ggregory 2016-02-24 22:06:36 -08:00
parent 2b15e1f43d
commit 4ceba11305

View File

@ -213,9 +213,7 @@ StrategyAndWidth getNextStrategy() {
if( isFormatLetter(c)) {
return letterPattern(c);
}
else {
return literal();
}
return literal();
}
private StrategyAndWidth letterPattern(char c) {