Refactor: moved parser in a separate package.
parent
01057f8492
commit
dac18daa8e
@ -1,7 +1,7 @@
|
||||
package net.pingex.dcf.commands;
|
||||
package net.pingex.dcf.commands.parser;
|
||||
|
||||
import net.pingex.dcf.commands.ParserException;
|
||||
import net.pingex.dcf.core.Configuration;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
@ -1,5 +1,6 @@
|
||||
package net.pingex.dcf.commands;
|
||||
package net.pingex.dcf.commands.parser;
|
||||
|
||||
import net.pingex.dcf.commands.ParserException;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Contains command parsers.
|
||||
*/
|
||||
package net.pingex.dcf.commands.parser;
|
Reference in New Issue