Updated copyright notice
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / commandline / parameterparser / ArgumentCount.java
index 0d9e23d..2827ae9 100755 (executable)
@@ -1,6 +1,6 @@
 /*
  * Svjatoslav Commons - shared library of common functionality.
- * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of version 3 of the GNU Lesser General Public License
@@ -11,8 +11,8 @@ package eu.svjatoslav.commons.commandline.parameterparser;
 
 public enum ArgumentCount {
 
-       NONE, // parameter has no arguments
-       SINGLE, // parameter has one argument
-       MULTI // parameter can have multiple arguments
+    NONE, // parameter has no arguments
+    SINGLE, // parameter has one argument
+    MULTI // parameter can have multiple arguments
 
 }