Skip to content

Commit 96fe3cd

Browse files
committed
AJ-894: fix BasicDictionary write method
1 parent 8a14f2c commit 96fe3cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/xxdb/data/BasicDictionary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public void write(ExtendedDataOutput out) throws IOException{
210210
try{
211211
for(Map.Entry<Entity, Entity> entry : dict.entrySet()){
212212
keys.set(index, entry.getKey());
213-
values.set(index, (Scalar)entry.getValue());
213+
values.set(index, (Entity) entry.getValue());
214214
++index;
215215
}
216216
}

0 commit comments

Comments
 (0)