[LIB-13] Rename some common classes
[chesshog-scanner.git] / src / main / java / org / hedgecode / chess / scanner / ScannerProperties.java
@@ -25,7 +25,7 @@ import java.util.Properties;
  *
  * @author Dmitry Samoshin aka gotty
  */
-public class ChessHogScannerProperties {
+public class ScannerProperties {
 
     /** Properties file. */
     private static final String PROPERTIES_FILE = "scanner.properties";
@@ -47,7 +47,7 @@ public class ChessHogScannerProperties {
      * @param throwExc Flag indicating whether to throw an exception or not.
      */
     public static void readProperties(String propsFile, Properties props, boolean throwExc) {
-        try (InputStream is = ChessHogScannerProperties.class.getClassLoader().getResourceAsStream(propsFile))
+        try (InputStream is = ScannerProperties.class.getClassLoader().getResourceAsStream(propsFile))
         {
             if (is == null) {
                 if (throwExc) {
@@ -114,7 +114,7 @@ public class ChessHogScannerProperties {
     /**
      * Private constructor.
      */
-    private ChessHogScannerProperties() {
+    private ScannerProperties() {
     }
 
 }