mirror of
https://github.com/corda/corda.git
synced 2025-06-15 21:58:17 +00:00
finish java/lang/ref/* support; add wrapper classes for primitives
This commit is contained in:
13
classpath/java/lang/Double.java
Normal file
13
classpath/java/lang/Double.java
Normal file
@ -0,0 +1,13 @@
|
||||
package java.lang;
|
||||
|
||||
public final class Double {
|
||||
private final double value;
|
||||
|
||||
public Double(double value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public double doubleValue() {
|
||||
return value;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user