fix ‘image file not found’ by using File.pathSeparator
This commit is contained in:
@@ -2239,7 +2239,7 @@ public class TeXDoclet extends Doclet {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StringTokenizer sourcepathToken = new StringTokenizer(sourcepath, ";");
|
StringTokenizer sourcepathToken = new StringTokenizer(sourcepath, File.pathSeparator);
|
||||||
while (sourcepathToken.hasMoreTokens()) {
|
while (sourcepathToken.hasMoreTokens()) {
|
||||||
String token = sourcepathToken.nextToken();
|
String token = sourcepathToken.nextToken();
|
||||||
System.out.println("Checking source path: " + token);
|
System.out.println("Checking source path: " + token);
|
||||||
|
|||||||
Reference in New Issue
Block a user