393363 Use Locale.ENGLISH for all toUpperCase and toLowerCase calls

This commit is contained in:
Greg Wilkins 2012-11-02 13:13:21 +11:00
parent b6cca66914
commit 13f6940fc3
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ public class Main
return false;
}
String name = path.getName().toLowerCase();
String name = path.getName().toLowerCase(Locale.ENGLISH);
return (name.startsWith("jetty") && name.endsWith(".xml"));
}
});