Migrate boolean getters
[bgpcep.git] / bgp / extensions / evpn / src / main / java / org / opendaylight / protocol / bgp / evpn / impl / extended / communities / MACMobExtCom.java
index c788e765184f001e782c3577202034f4486887ea..a651a588724c405cc255fda70649acff6fc8e290 100644 (file)
@@ -41,7 +41,7 @@ public final class MACMobExtCom extends AbstractExtendedCommunities {
             "The extended community %s is not MacMobilityExtendedCommunityCase type.", extendedCommunity);
         final MacMobilityExtendedCommunity extCom = ((MacMobilityExtendedCommunityCase) extendedCommunity)
                 .getMacMobilityExtendedCommunity();
-        byteAggregator.writeBoolean(extCom.isStatic());
+        byteAggregator.writeBoolean(extCom.getStatic());
         byteAggregator.writeZero(RESERVED);
         byteAggregator.writeInt(extCom.getSeqNumber().intValue());
     }