-
Enhancement
-
Resolution: Fixed
-
P4
-
None
-
b03
A few refactorings to slightly improve performance of java.util.Formatters and align the implementation with the JEP work for TemplatedStrings:
- turn Flags into an int
- avoid varargs methods: checkBadFlags(Flags.PARENTHESES, ... -> checkBadFlags(Flags.Parentheses | ...
- make FormatSpecifier and FixedString static
- turn Flags into an int
- avoid varargs methods: checkBadFlags(Flags.PARENTHESES, ... -> checkBadFlags(Flags.Parentheses | ...
- make FormatSpecifier and FixedString static