Skip to content

Commit 1870b19

Browse files
committed
Oops, this needs to be Serializable
1 parent ee4f146 commit 1870b19

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/edu/stanford/nlp/semgraph/semgrex/Attribute.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package edu.stanford.nlp.semgraph.semgrex;
22

3-
public class Attribute {
3+
import java.io.Serializable;
4+
5+
public class Attribute implements Serializable {
46
final String key;
57
final Object cased;
68
final Object caseless;
@@ -12,4 +14,6 @@ public class Attribute {
1214
this.caseless = caseless;
1315
this.negated = negated;
1416
}
17+
18+
private static final long serialVersionUID = 973567614155612487L;
1519
}

0 commit comments

Comments
 (0)