Commit b095e4ab authored by yanzg's avatar yanzg

修复等待时间

parent 38af88fd
...@@ -15,7 +15,7 @@ public class YzgLanguage { ...@@ -15,7 +15,7 @@ public class YzgLanguage {
/** /**
* 默认实例 * 默认实例
*/ */
private static final YzgLanguage instance = new YzgLanguage(); private static final YzgLanguage INSTANCE = new YzgLanguage();
/** /**
* 默认实例 * 默认实例
...@@ -23,7 +23,7 @@ public class YzgLanguage { ...@@ -23,7 +23,7 @@ public class YzgLanguage {
* @return 语言对象 * @return 语言对象
*/ */
public static YzgLanguage get() { public static YzgLanguage get() {
return instance; return INSTANCE;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment