mirror of
https://github.com/corda/corda.git
synced 2025-06-17 06:38:21 +00:00
flesh out classpath enough to test threading; fix indexing bug in parsePool()
This commit is contained in:
13
classpath/java/lang/Long.java
Normal file
13
classpath/java/lang/Long.java
Normal file
@ -0,0 +1,13 @@
|
||||
package java.lang;
|
||||
|
||||
public class Long {
|
||||
private final long value;
|
||||
|
||||
public Long(long value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public long longValue() {
|
||||
return value;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user