kiwiproject / kiwi

A set of Java utilities that we could not find in Guava or Apache Commons...or we just felt like having our own version.
MIT License
12 stars 1 forks source link

Fix regex problem in KiwiJars#getPathComponents #1201

Closed sleberknight closed 2 months ago

sleberknight commented 2 months ago

IntelliJ flags this LOC:

return newArrayList(decodedJarPath.trim().split(File.separator));

with this warning:

File. separator is used as a regex; will not work on Windows

This can be fixed by quoting it using Pattern.quote.