liblldp: final parameters
[controller.git] / opendaylight / commons / liblldp / src / main / java / org / opendaylight / controller / liblldp / CustomTLVKey.java
index 9953c7e6652a673d07fe37e82cdeaf814d1c37c0..fd5c2100632fc26ef921fcceed3c82318c8a51b1 100644 (file)
@@ -17,7 +17,7 @@ public class CustomTLVKey {
      * @param oui
      * @param subtype
      */
-    public CustomTLVKey(int oui, byte subtype) {
+    public CustomTLVKey(final int oui, final byte subtype) {
         this.oui = oui;
         this.subtype = subtype;
     }
@@ -46,7 +46,7 @@ public class CustomTLVKey {
     }
 
     @Override
-    public boolean equals(Object obj) {
+    public boolean equals(final Object obj) {
         if (this == obj) {
             return true;
         }