From f8e02ef0aadd9319362fa41e1b3f2bb24f192de2 Mon Sep 17 00:00:00 2001 From: The-Lum <86879521+The-Lum@users.noreply.github.com> Date: Tue, 6 Jul 2021 13:01:39 +0200 Subject: [PATCH] Rename Warning to CypherWarning Rename `Warning` to `CypherWarning`, for more readability on the stdout/stderror --- src/net/sourceforge/plantuml/utils/Cypher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/sourceforge/plantuml/utils/Cypher.java b/src/net/sourceforge/plantuml/utils/Cypher.java index 6dd696927..000cbf421 100644 --- a/src/net/sourceforge/plantuml/utils/Cypher.java +++ b/src/net/sourceforge/plantuml/utils/Cypher.java @@ -131,7 +131,7 @@ public class Cypher { public void addException(String word) { word = word.toLowerCase(); if (words.contains(word)) { - System.err.println("Warning:" + word); + System.err.println("CypherWarning:" + word); words.remove(word); } except.add(word);