From: Roland Haeder Date: Sat, 5 Sep 2015 13:08:45 +0000 (+0200) Subject: Yes, local variables that won't change can be made final. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fc59334a1b9492d3781d9c14ee9b0be322f438dc;p=jcore-utils.git Yes, local variables that won't change can be made final. Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/jcoreee/validator/BaseObjectValidator.java b/src/org/mxchange/jcoreee/validator/BaseObjectValidator.java index 6630944..ca021aa 100644 --- a/src/org/mxchange/jcoreee/validator/BaseObjectValidator.java +++ b/src/org/mxchange/jcoreee/validator/BaseObjectValidator.java @@ -81,7 +81,7 @@ public abstract class BaseObjectValidator extends BaseFrameworkSystem implements String errKey = "error.unknown_id"; //NOI18N // Get client id - String clientId = component.getClientId(); + final String clientId = component.getClientId(); // Default is no field is valid boolean isValidField = false;