[LIB-13] Override access to static constants
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / regex / type / RegexBlockFinder.java
index a8951d8..2e50b8c 100644 (file)
@@ -19,11 +19,12 @@ package org.hedgecode.chess.scanner.regex.type;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 
-import org.hedgecode.chess.scanner.ChessHogScannerConstants;
 import org.hedgecode.chess.scanner.regex.AbstractRegexResult;
 import org.hedgecode.chess.scanner.regex.RegexMatcher;
 import org.hedgecode.chess.scanner.regex.RegexResult;
 
+import static org.hedgecode.chess.scanner.ChessHogScannerConstants.*;
+
 /**
  * RegexBlockFinder
  *
@@ -70,7 +71,7 @@ public class RegexBlockFinder extends AbstractRegexResult implements RegexMatche
         current.append(
                 input
         ).append(
-                ChessHogScannerConstants.CRLF
+                CRLF
         );
     }