Skip to content

Commit

Permalink
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -73,6 +73,12 @@ public Object next() {
position++;
spacePadding = readInt();
zeroPadding = FormatDirective.DEFAULT;
} else if (format.charAt(position) == '0') {
spacePadding = FormatDirective.DEFAULT;
zeroPadding = readInt();
} else if (Character.isDigit(format.charAt(position))) {
spacePadding = readInt();
zeroPadding = FormatDirective.DEFAULT;
} else {
spacePadding = FormatDirective.DEFAULT;

0 comments on commit 15863ec

Please sign in to comment.