mirror of
https://github.com/revanced/smali.git
synced 2025-05-30 20:40:11 +02:00
Use the correct path separator character when looking for classpath entries
This commit is contained in:
parent
7f5e1cc633
commit
539353a85c
@ -182,7 +182,7 @@ public class ClassPathResolver {
|
|||||||
// It's not a local path, so let's try to resolve it as a device path, relative to one of the provided
|
// It's not a local path, so let's try to resolve it as a device path, relative to one of the provided
|
||||||
// directories
|
// directories
|
||||||
List<String> pathComponents = splitDevicePath(entry);
|
List<String> pathComponents = splitDevicePath(entry);
|
||||||
Joiner pathJoiner = Joiner.on(File.pathSeparatorChar);
|
Joiner pathJoiner = Joiner.on(File.separatorChar);
|
||||||
|
|
||||||
for (String directory: classPathDirs) {
|
for (String directory: classPathDirs) {
|
||||||
File directoryFile = new File(directory);
|
File directoryFile = new File(directory);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user