From 5dff8fed1f44cd392e482cd38222e5ea18b559fa Mon Sep 17 00:00:00 2001 From: gotty Date: Sat, 25 Jan 2020 06:47:22 +0300 Subject: [PATCH] [LIB-9] Links to FormatConstants in chesshog-format module --- .../src/main/java/org/hedgecode/chess/wiki/WikiBuilder.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chesshog-format/src/main/java/org/hedgecode/chess/wiki/WikiBuilder.java b/chesshog-format/src/main/java/org/hedgecode/chess/wiki/WikiBuilder.java index 81731c9..2b3365a 100644 --- a/chesshog-format/src/main/java/org/hedgecode/chess/wiki/WikiBuilder.java +++ b/chesshog-format/src/main/java/org/hedgecode/chess/wiki/WikiBuilder.java @@ -20,7 +20,7 @@ import java.util.Map; import java.util.ResourceBundle; import org.hedgecode.chess.Builder; -import org.hedgecode.chess.ChessHogConstants; +import org.hedgecode.chess.FormatConstants; import org.hedgecode.chess.position.Color; import org.hedgecode.chess.position.ColorPiece; import org.hedgecode.chess.position.Position; @@ -52,7 +52,7 @@ public final class WikiBuilder implements Builder { if (withTemplate) { ResourceBundle resourceBundle = - ResourceBundle.getBundle(ChessHogConstants.LOCALE_BUNDLE_FILE); + ResourceBundle.getBundle(FormatConstants.LOCALE_BUNDLE_FILE); sb.append(Wiki.TEMPLATE_BEGIN).append( resourceBundle.getString("wiki.chess.diagram.name") ).append(Wiki.CRLF); -- 2.10.0