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
* The cause.
*/
public JSONException(String message, Throwable cause) {
public JSONException(final String message, final Throwable cause) {
super(message, cause);
}