We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc3e539 commit ff165cdCopy full SHA for ff165cd
src/com/xxdb/data/BasicIotAnyVector.java
@@ -77,7 +77,10 @@ public Entity get(int index) {
77
BasicInt curDataType = (BasicInt) indexsDataType.get(index);
78
BasicInt curIndex = (BasicInt) indexs.get(index);
79
80
- return ((Vector) subVector.get(curDataType.getInt())).get(curIndex.getInt());
+ if (curDataType.getInt() == 0)
81
+ return new Void();
82
+ else
83
+ return ((Vector) subVector.get(curDataType.getInt())).get(curIndex.getInt());
84
}
85
86
public String getString(int index) {
0 commit comments