Ignore null arguments in the commandLine generation method.

This commit is contained in:
ulumulu1510 2015-09-29 15:30:05 +02:00 committed by Olof Larsson
parent 5504ed9af1
commit 771edea34c

View File

@ -1022,6 +1022,9 @@ public class MassiveCommand
// Then args
for (String arg : args)
{
// Check if null
if (arg == null) continue;
// First a space
ret.append(' ');