Change the member isValid in class MatchField non-transient so that it can be synced... 23/1323/1
authorChi-Vien Ly <chivly@cisco.com>
Sat, 21 Sep 2013 13:26:54 +0000 (06:26 -0700)
committerChi-Vien Ly <chivly@cisco.com>
Sat, 21 Sep 2013 13:26:54 +0000 (06:26 -0700)
Change-Id: I036d43b6328d16136a99004ed53d0eb2b70d12c8
Signed-off-by: Chi-Vien Ly <chivly@cisco.com>
opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/match/MatchField.java

index b2946d6ab2226157680f4067bab95ffdee78cffa..554d7e2fb3df93564cc7575fe6a83486deaa131f 100644 (file)
@@ -32,7 +32,7 @@ public class MatchField implements Cloneable, Serializable {
     private Object value; // the value of the field we want to match
     private Object mask; // the value of the mask we want to match on the
     // specified field
-    private transient boolean isValid;
+    private boolean isValid;
 
     // To satisfy JAXB
     @SuppressWarnings("unused")