ignored exception

This commit is contained in:
MattBDev
2016-05-21 11:54:00 -04:00
parent 8af30667e4
commit 13b7a798e6
5 changed files with 21 additions and 19 deletions

View File

@ -37,7 +37,7 @@ public class Help extends Command {
if (MathMan.isInteger(args[0])) {
try {
displayHelp(player, null, Integer.parseInt(args[0]));
} catch (NumberFormatException e) {
} catch (NumberFormatException ignored) {
displayHelp(player, null, 1);
}
} else {
@ -48,7 +48,7 @@ public class Help extends Command {
if (MathMan.isInteger(args[1])) {
try {
displayHelp(player, args[1], Integer.parseInt(args[1]));
} catch (NumberFormatException e) {
} catch (NumberFormatException ignored) {
displayHelp(player, args[1], 1);
}
}

View File

@ -20,14 +20,14 @@ public class IntervalFlag extends Flag<Integer[]> {
seconds = 1;
try {
amount = Integer.parseInt(values[0]);
} catch (NumberFormatException e) {
} catch (NumberFormatException ignored) {
return null;
}
} else if (values.length == 2) {
try {
amount = Integer.parseInt(values[0]);
seconds = Integer.parseInt(values[1]);
} catch (NumberFormatException e) {
} catch (NumberFormatException ignored) {
return null;
}
} else {

View File

@ -19,6 +19,7 @@ import com.intellectualcrafters.plot.object.PlotPlayer;
import com.intellectualcrafters.plot.object.PseudoRandom;
import com.intellectualcrafters.plot.object.RegionWrapper;
import com.intellectualcrafters.plot.object.RunnableVal;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
@ -709,7 +710,7 @@ public class MainUtil {
try {
result.add(UUID.fromString(name));
continue;
} catch (IllegalArgumentException e) {
} catch (IllegalArgumentException ignored) {
return null;
}
}