Style: Line length
This commit is contained in:
+4
-2
@@ -56,7 +56,8 @@ public class RequestParameterAccessor {
|
||||
try {
|
||||
return parser.parse(value);
|
||||
} catch (Exception e) {
|
||||
throw new ParameterParseException("Error while parsing '" + key + "' with specified parser", key, e);
|
||||
throw new ParameterParseException(
|
||||
"Error while parsing '" + key + "' with specified parser", key, e);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -95,7 +96,8 @@ public class RequestParameterAccessor {
|
||||
try {
|
||||
return parser.parse(value);
|
||||
} catch (Exception e) {
|
||||
throw new ParameterParseException("Error while parsing '" + key + "' with specified parser", key, e);
|
||||
throw new ParameterParseException(
|
||||
"Error while parsing '" + key + "' with specified parser", key, e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user