mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
flesh out serialization/deserialization code and fix build
This commit is contained in:
@ -12,6 +12,10 @@ public final class Integer extends Number {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public static Integer valueOf(int value) {
|
||||
return new Integer(value);
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
return o instanceof Integer && ((Integer) o).value == value;
|
||||
}
|
||||
|
Reference in New Issue
Block a user