Allow long parameter names.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 14 Oct 2014 20:52:17 +0000 (22:52 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 14 Oct 2014 20:52:17 +0000 (22:52 +0200)
src/main/java/net/pterodactylus/rhynodge/engine/Starter.java

index 4cfb857..4c3b4db 100644 (file)
@@ -64,7 +64,7 @@ public class Starter {
                 *
                 * @return The chain directory
                 */
-               @Option(defaultValue = "chains", shortName = "c", description = "The directory to watch for chains")
+               @Option(defaultValue = "chains", longName = "chains", shortName = "c", description = "The directory to watch for chains")
                String getChainDirectory();
 
                /**
@@ -72,7 +72,7 @@ public class Starter {
                 *
                 * @return The states directory
                 */
-               @Option(defaultValue = "states", shortName = "s", description = "The directory to store states in")
+               @Option(defaultValue = "states", longName = "states", shortName = "s", description = "The directory to store states in")
                String getStateDirectory();
 
        }