提交 16d9c93a 编写于 作者: K kohsuke

On Turkish encoding "I" gets converted to ı, not 'i'.


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@5769 71c3de6d-444a-0410-be80-ed276b4c234a
上级 d6f40b7f
package hudson.model;
import java.util.Locale;
/**
* Ball color used for the build status indication.
*
......@@ -65,7 +67,7 @@ public enum BallColor {
* Also used as a final name.
*/
public String toString() {
return name().toLowerCase();
return name().toLowerCase(Locale.ENGLISH);
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册