diff --git a/plugins/hg4idea/src/org/zmlx/hg4idea/execution/HgCommandExecutor.java b/plugins/hg4idea/src/org/zmlx/hg4idea/execution/HgCommandExecutor.java index 0cc71dc2d605..25c3ecc097d7 100644 --- a/plugins/hg4idea/src/org/zmlx/hg4idea/execution/HgCommandExecutor.java +++ b/plugins/hg4idea/src/org/zmlx/hg4idea/execution/HgCommandExecutor.java @@ -53,7 +53,6 @@ import java.util.List; *
  • error output is logged to the console and log, if the command is not silent. *

    */ -@SuppressWarnings("UseOfSystemOutOrSystemErr") public final class HgCommandExecutor { private static final Logger LOG = Logger.getInstance(HgCommandExecutor.class.getName()); @@ -220,6 +219,7 @@ public final class HgCommandExecutor { } // logging to the Version Control console (without extensions and configs) + @SuppressWarnings("UseOfSystemOutOrSystemErr") private void log(@NotNull String operation, @Nullable List arguments, @NotNull HgCommandResult result) { if (myProject.isDisposed()) { return;