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 Character {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public static Character valueOf(char value) {
|
||||
return new Character(value);
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
return o instanceof Character && ((Character) o).value == value;
|
||||
}
|
||||
|
Reference in New Issue
Block a user