BUG-2982 : moved path-attributes container to grouping
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / CommunityUtil.java
index ce79fabfdcc9e263f63f8f0d69d1c0f13e91f042..b696d4c4f06d81fb19d9a3ee128e0133fc962ec9 100644 (file)
@@ -11,7 +11,7 @@ import com.google.common.base.Preconditions;
 import org.opendaylight.protocol.util.NoopReferenceCache;
 import org.opendaylight.protocol.util.ReferenceCache;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.AsNumber;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.path.attributes.CommunitiesBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.path.attributes.attributes.CommunitiesBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.Community;
 
 /**
@@ -51,7 +51,7 @@ public final class CommunityUtil {
      * @return new Community
      */
     public Community create(final long asn, final int semantics) {
-        return create(refCache, asn, semantics);
+        return create(this.refCache, asn, semantics);
     }
 
     /**
@@ -61,7 +61,7 @@ public final class CommunityUtil {
      * @return new Community
      */
     public Community valueOf(final String string) {
-        return valueOf(refCache, string);
+        return valueOf(this.refCache, string);
     }
 
     /**