mirror of
https://github.com/corda/corda.git
synced 2025-06-19 07:38:22 +00:00
Added Long.valueOf(String)
This commit is contained in:
@ -14,6 +14,10 @@ public final class Long extends Number {
|
|||||||
this.value = parseLong(s);
|
this.value = parseLong(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Long valueOf(String value) {
|
||||||
|
return new Long(value);
|
||||||
|
}
|
||||||
|
|
||||||
public static Long valueOf(long value) {
|
public static Long valueOf(long value) {
|
||||||
return new Long(value);
|
return new Long(value);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user