Minor Change

Turning a method returning boolean if(something) into a single line.
This commit is contained in:
magnusulf 2014-11-21 23:28:11 +01:00
parent 6aa2bd5ee4
commit 61a29a96a5

View File

@ -587,11 +587,7 @@ public class MassiveCommand
public boolean argIsSet(int idx)
{
if (this.args.size() < idx+1)
{
return false;
}
return true;
return ! (this.args.size() < idx+1);
}
// arg