File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -59,15 +59,14 @@ protected BasicIotAnyVector(ExtendedDataInput in) throws IOException {
59
59
}
60
60
61
61
public Entity get (int index ) {
62
- BasicInt dataType = (BasicInt ) indexsDataType .get (index );
63
- return subVector .get (dataType .getInt ());
64
- }
65
-
66
- public String getString (int index ) {
67
62
BasicInt curDataType = (BasicInt ) indexsDataType .get (index );
68
63
BasicInt curIndex = (BasicInt ) indexs .get (index );
69
64
70
- return ((Vector ) subVector .get (curDataType .getInt ())).get (curIndex .getInt ()).getString ();
65
+ return ((Vector ) subVector .get (curDataType .getInt ())).get (curIndex .getInt ());
66
+ }
67
+
68
+ public String getString (int index ) {
69
+ return get (index ).getString ();
71
70
}
72
71
73
72
public Vector getSubVector (int [] indices ){
You can’t perform that action at this time.
0 commit comments