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