5
5
import com .datasiqn .commandcore .argument .Arguments ;
6
6
import com .datasiqn .commandcore .argument .ListArguments ;
7
7
import com .datasiqn .commandcore .command .Command ;
8
- import com .datasiqn .commandcore .command .TabComplete ;
9
8
import com .datasiqn .commandcore .command .CommandContext ;
9
+ import com .datasiqn .commandcore .command .TabComplete ;
10
10
import com .datasiqn .resultapi .None ;
11
11
import com .datasiqn .resultapi .Result ;
12
- import org .bukkit .Bukkit ;
13
12
import org .bukkit .ChatColor ;
14
13
import org .jetbrains .annotations .Contract ;
15
14
import org .jetbrains .annotations .NotNull ;
@@ -187,8 +186,6 @@ public boolean hasDescription() {
187
186
return new CurrentNode (Result .error (Collections .emptyList ()), nodeList , args , true );
188
187
Result <ApplicableNode , List <String >> parseResult = checkApplicable (reader , nodeSet );
189
188
if (parseResult .isError ()) {
190
- System .out .println ("errors: " + String .join ("," , parseResult .unwrapError ()));
191
- System .out .println ("args is " + String .join ("," , args ));
192
189
args .add (reader .splice (reader .index ()));
193
190
return new CurrentNode (Result .error (parseResult .unwrapError ()), nodeList , args , false );
194
191
}
@@ -200,7 +197,6 @@ public boolean hasDescription() {
200
197
201
198
if (reader .atEnd () && reader .get () == ' ' ) args .add ("" );
202
199
} while (!reader .atEnd ());
203
- System .out .println ("args is " + String .join ("," , args ));
204
200
return new CurrentNode (Result .ok (node ), nodeList , args , false );
205
201
}
206
202
0 commit comments