mirror of
https://github.com/corda/corda.git
synced 2025-01-21 03:55:00 +00:00
14 lines
190 B
Java
14 lines
190 B
Java
|
package java.lang;
|
||
|
|
||
|
public final class Short {
|
||
|
private final short value;
|
||
|
|
||
|
public Short(short value) {
|
||
|
this.value = value;
|
||
|
}
|
||
|
|
||
|
public short shortValue() {
|
||
|
return value;
|
||
|
}
|
||
|
}
|