Skip to content

Commit

Permalink
fix improper reference to OMWordnet in serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
apease committed Sep 18, 2023
1 parent 9c0fc1b commit e2a066f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java/com/articulate/sigma/wordNet/WordNet.java
Original file line number Diff line number Diff line change
Expand Up @@ -1783,7 +1783,7 @@ public static <T> T decoder() {
FileInputStream file = new FileInputStream(kbDir + File.separator + "wn.ser");
Input input = new Input(file);
//Input input = new Input(bytes);
ob = kryoLocal.get().readObject(input, OMWordnet.class);
ob = kryoLocal.get().readObject(input, WordNet.class);
}
catch (Exception e) {
e.printStackTrace();
Expand Down

0 comments on commit e2a066f

Please sign in to comment.