Ignore cause when handling ParameterException in ParametricCallable.

This commit is contained in:
sk89q 2014-06-28 17:37:47 -07:00
parent 93a48bbb55
commit a957482ee6

View File

@ -225,12 +225,6 @@ class ParametricCallable implements CommandCallable {
} catch (UnconsumedParameterException e) {
throw new InvalidUsageException("Too many parameters! Unused parameters: " + e.getUnconsumed(), getDescription());
} catch (ParameterException e) {
if (e.getCause() != null) {
for (ExceptionConverter converter : builder.getExceptionConverters()) {
converter.convert(e.getCause());
}
}
assert parameter != null;
String name = parameter.getName();