-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
PathFileObject.toBinaryName() uses String.replace(String, String), which is profiling at 3x the cost of String.replace(char, char) on my machine. Switching to use the primitive version where possible saves ~300ms in a 30s compilation, or about 1%.
FileSystem.getSeperator() isn't guaranteed to return a single-character separator, but a simple check can satisfy all cases while still being optimal for single-character separators.
FileSystem.getSeperator() isn't guaranteed to return a single-character separator, but a simple check can satisfy all cases while still being optimal for single-character separators.
- relates to
-
JDK-8222955 Optimize String.replace(CharSequence, CharSequence) for common cases
- Resolved