Closed sleberknight closed 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.
Pattern.quote
IntelliJ flags this LOC:
with this warning:
This can be fixed by quoting it using
Pattern.quote
.