393363 Use Locale.ENGLISH for all toUpperCase and toLowerCase calls
This commit is contained in:
parent
b6cca66914
commit
13f6940fc3
|
@ -386,7 +386,7 @@ public class Main
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
String name = path.getName().toLowerCase();
|
String name = path.getName().toLowerCase(Locale.ENGLISH);
|
||||||
return (name.startsWith("jetty") && name.endsWith(".xml"));
|
return (name.startsWith("jetty") && name.endsWith(".xml"));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue