Make termination strategy public.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / string / tokenizer / Terminator.java
index 2d0fd45..39718cd 100755 (executable)
@@ -26,8 +26,8 @@ public class Terminator {
         this.termination = termination;
     }
 
-    enum TerminationStrategy {
+    public enum TerminationStrategy {
         PRESERVE,
-        DROP;
+        DROP
     }
 }