tlog: nuke unwanted localization

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236480 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2012-01-27 01:12:36 +00:00
parent 4d9a1d0862
commit 6279c500a2
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ public class UpdateLog implements PluginInfoInitialized {
private void ensureLog() {
if (tlog == null) {
String newLogName = String.format("%s.%019d", TLOG_NAME, id);
String newLogName = String.format(Locale.ENGLISH, "%s.%019d", TLOG_NAME, id);
try {
tlog = new TransactionLog(new File(tlogDir, newLogName), globalStrings);
} catch (IOException e) {