Summary
Ensure the overridable methods ChoiceFormat::applyPattern
, ChoiceFormat::setChoices
, and MessageFormat::applyPattern
are no longer invoked in the constructors of their respective classes.
Problem
ChoiceFormat::applyPattern
, ChoiceFormat::setChoices
, and MessageFormat::applyPattern
are overridable methods that are invoked by the constructors of their respective classes. Subclasses that override these methods may also inadvertently cause changes in the constructors as well, since it is not specified anywhere that the constructors call these methods directly.
Solution
Create additional private visibility methods that both the methods in question and the constructors can call. This ensures that subclasses overriding these methods will not have potential side effects in the constructor as well.
Specification
N/A (There is behavioral impact)
- csr of
-
JDK-8317612 ChoiceFormat and MessageFormat constructors call non-final public method
-
- Resolved
-