зеркало из https://github.com/mozilla/pjs.git
Fix 18229: Bogus class file names being generated on Windows
This commit is contained in:
Родитель
913a64bdee
Коммит
025bfe6158
|
@ -72,7 +72,7 @@ public class OptClassNameHelper implements ClassNameHelper {
|
|||
}
|
||||
|
||||
public void setTargetClassFileName(String classFileName) {
|
||||
int lastSeparator = classFileName.lastIndexOf('/');
|
||||
int lastSeparator = classFileName.lastIndexOf(File.separatorChar);
|
||||
String initialName;
|
||||
if (lastSeparator == -1) {
|
||||
generatingDirectory = "";
|
||||
|
|
|
@ -72,7 +72,7 @@ public class OptClassNameHelper implements ClassNameHelper {
|
|||
}
|
||||
|
||||
public void setTargetClassFileName(String classFileName) {
|
||||
int lastSeparator = classFileName.lastIndexOf('/');
|
||||
int lastSeparator = classFileName.lastIndexOf(File.separatorChar);
|
||||
String initialName;
|
||||
if (lastSeparator == -1) {
|
||||
generatingDirectory = "";
|
||||
|
|
Загрузка…
Ссылка в новой задаче