Fix one type checking warning

This commit is contained in:
vemacs 2015-03-05 00:16:57 -05:00
parent 7fd590fc75
commit 1ea6dbe12d

@ -70,7 +70,7 @@ public class FCmdRoot extends FCommand {
public FCmdRoot() {
super();
this.aliases.addAll(Conf.baseCommandAliases);
this.aliases.removeAll(Collections.singletonList(null)); // remove any nulls from extra commas
this.aliases.removeAll(Collections.<String>singletonList(null)); // remove any nulls from extra commas
this.allowNoSlashAccess = Conf.allowNoSlashCommand;
//this.requiredArgs.add("");