Commit c8d5292 1 parent d3aa77a commit c8d5292 Copy full SHA for c8d5292
File tree 1 file changed +3
-2
lines changed
java/vortex-jni/src/main/java/dev/vortex/impl
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 24
24
import dev .vortex .api .DType ;
25
25
import dev .vortex .jni .FFI ;
26
26
import java .nio .charset .StandardCharsets ;
27
+ import java .util .List ;
27
28
import java .util .Optional ;
28
29
29
30
public final class NativeDType extends BaseWrapped <FFI .FFIDType > implements DType {
@@ -78,7 +79,7 @@ public String toString() {
78
79
}
79
80
80
81
@ Override
81
- public ImmutableList <String > getFieldNames () {
82
+ public List <String > getFieldNames () {
82
83
checkNotNull (inner );
83
84
checkArgument (Variant .STRUCT == variant , "getStructFieldNames() for non-struct DType" );
84
85
@@ -100,7 +101,7 @@ public ImmutableList<String> getFieldNames() {
100
101
}
101
102
102
103
@ Override
103
- public ImmutableList <DType > getFieldTypes () {
104
+ public List <DType > getFieldTypes () {
104
105
checkNotNull (inner );
105
106
checkArgument (Variant .STRUCT == variant , "getStructFieldNames() for non-struct DType" );
106
107
ImmutableList .Builder <DType > builder = ImmutableList .builder ();
You can’t perform that action at this time.
0 commit comments