mirror of
https://github.com/corda/corda.git
synced 2025-06-16 06:08:13 +00:00
various classpath updates to help SWT build
This commit is contained in:
@ -16,6 +16,10 @@ public final class Boolean {
|
||||
return (value ? Boolean.TRUE : Boolean.FALSE);
|
||||
}
|
||||
|
||||
public static Boolean valueOf(String s) {
|
||||
return ("true".equals(s) ? Boolean.TRUE : Boolean.FALSE);
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
return o instanceof Boolean && ((Boolean) o).value == value;
|
||||
}
|
||||
|
Reference in New Issue
Block a user