-
Enhancement
-
Resolution: Fixed
-
P5
-
None
-
b12
LinkedList is used in javax.swing.plaf.synth.ParsedSynthStyle.AggregatePainter#painters
There is only add/iterator calls on this list. No removes from the head or something like this. Not sure why LinkedList was used, but ArrayList should be preferred as more efficient and widely used (more chances for JIT) collection
There is only add/iterator calls on this list. No removes from the head or something like this. Not sure why LinkedList was used, but ArrayList should be preferred as more efficient and widely used (more chances for JIT) collection
- relates to
-
JDK-8263561 Re-examine uses of LinkedList
- Resolved