mirror of
https://github.com/corda/corda.git
synced 2025-06-15 13:48:14 +00:00
flesh out URL and friends
This commit is contained in:
@ -87,6 +87,10 @@ public final class Long extends Number {
|
||||
return c;
|
||||
}
|
||||
|
||||
public static long parseLong(String s) {
|
||||
return parseLong(s, 10);
|
||||
}
|
||||
|
||||
public static long parseLong(String s, int radix) {
|
||||
long number = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user