From a4febb8e89b2c9c4df0529e7558a054e76d3acb7 Mon Sep 17 00:00:00 2001 From: wangzeyu Date: Mon, 13 Jan 2025 15:12:26 +0800 Subject: [PATCH] repair codecheck Signed-off-by: wangzeyu --- .../test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java b/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java index d7dc5a5f..a25be6d5 100644 --- a/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java +++ b/hapsigntool/hap_sign_tool/src/test/java/com/ohos/hapsigntoolcmd/ConcurrencyTest.java @@ -76,7 +76,7 @@ public class ConcurrencyTest { private static final File TMP_DIR = new File("concurrentTest"); private static final List tmpSource = new ArrayList<>(); - private static final LogUtils log = new LogUtils(ConcurrencyTest.class); + private static final LogUtils LOG = new LogUtils(ConcurrencyTest.class); /** * before test @@ -153,7 +153,7 @@ public class ConcurrencyTest { isFinished = countDownLatch.await(KEEP_ALIVE_TIMES, TimeUnit.SECONDS); } catch (InterruptedException e) { isFinished = false; - log.error("concurrency test interrupted", e); + LOG.error("concurrency test interrupted", e); } if (!isFinished) { executor.shutdownNow(); -- Gitee