Fix parameter index error for mstore stats

The error occurred when trying to check the stats of a specific coll by name.
This commit is contained in:
TheComputerGeek2
2018-05-19 11:48:31 -07:00
committed by Magnus Ulf Jørgensen
parent a00254a0ef
commit 708c687eea

View File

@@ -33,7 +33,7 @@ public class CmdMassiveCoreStoreStats extends MassiveCoreCommand
}
else
{
Coll<?> coll = this.readArg();
Coll<?> coll = this.readArgAt(0);
this.performColl(coll);
}
}