提交 3ed57953 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Fix TestScript.ERROR_CODE_TO_NAME for code coverage

上级 96883799
......@@ -492,11 +492,11 @@ public class TestScript extends TestBase {
}
/** Convert the error code to a symbolic name from ErrorCode. */
private static final Map<Integer, String> ERROR_CODE_TO_NAME = new HashMap<>();
private static final Map<Integer, String> ERROR_CODE_TO_NAME = new HashMap<>(256);
static {
try {
for (Field field : ErrorCode.class.getDeclaredFields()) {
if (Modifier.isStatic(field.getModifiers())) {
if (field.getModifiers() == (Modifier.PUBLIC | Modifier.STATIC | Modifier.FINAL)) {
ERROR_CODE_TO_NAME.put(field.getInt(null), field.getName());
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论