From 21640a27f733ca3cc5b82e0b9c14f1683c206484 Mon Sep 17 00:00:00 2001 From: Hearen Date: Wed, 10 Oct 2018 23:07:05 +0800 Subject: [PATCH] fix some typos in error prompts --- .../taobao/arthas/core/command/klass100/RedefineCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/taobao/arthas/core/command/klass100/RedefineCommand.java b/core/src/main/java/com/taobao/arthas/core/command/klass100/RedefineCommand.java index 0d9cd8209..1edada2d6 100644 --- a/core/src/main/java/com/taobao/arthas/core/command/klass100/RedefineCommand.java +++ b/core/src/main/java/com/taobao/arthas/core/command/klass100/RedefineCommand.java @@ -64,12 +64,12 @@ public class RedefineCommand extends AnnotatedCommand { for (String path : paths) { File file = new File(path); if (!file.exists()) { - process.write("path is not exists, path:" + path + "\n"); + process.write("file does not exist, path:" + path + "\n"); process.end(); return; } if (!file.isFile()) { - process.write("path is not a normal file, path:" + path + "\n"); + process.write("not a normal file, path:" + path + "\n"); process.end(); return; }