Code Clean Up
[bgpcep.git] / bgp / evpn / src / main / java / org / opendaylight / protocol / bgp / evpn / impl / attributes / tunnel / identifier / TunnelType.java
index ee6c62f6ea93b4df31c06c53db6bbd375723a27b..0bd6f6ad2fc86f661a3ad5c12cf03475a5daa407 100644 (file)
@@ -36,10 +36,10 @@ enum TunnelType {
     }
 
     public Class<? extends TunnelIdentifier> getClazz() {
-        return clazz;
+        return this.clazz;
     }
 
     public int getIntValue() {
-        return value;
+        return this.value;
     }
 }