We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf6047 commit b143be2Copy full SHA for b143be2
1 file changed
modules/margin/src/main/java/com/opengamma/sdk/margin/Ccp.java
@@ -58,6 +58,8 @@ public class Ccp implements Comparable<Ccp>, Serializable {
58
/** TIF (Tokyo Financial Exchange) SPAN. */
59
public static final Ccp TIF_SPAN = new Ccp("TIF_SPAN");
60
61
+ private static final long serialVersionUID = 1L;
62
+
63
private final String ccpName;
64
65
/**
@@ -101,7 +103,7 @@ private Ccp(String ccpName) {
101
103
this.ccpName = ccpName;
102
104
}
105
- private Ccp readResolve() {
106
+ private Object readResolve() {
107
return of(ccpName);
108
109
0 commit comments