1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

makes params final

This commit is contained in:
John J. Aylward 2015-10-12 14:54:30 -04:00
parent 0e13241528
commit 1b06a802cf

View file

@ -28,7 +28,7 @@ public class JSONException extends RuntimeException {
* @param cause * @param cause
* The cause. * The cause.
*/ */
public JSONException(String message, Throwable cause) { public JSONException(final String message, final Throwable cause) {
super(message, cause); super(message, cause);
} }