Skip to content

Commit

Permalink
Fix ModHashCodeHasher deserialize.
Browse files Browse the repository at this point in the history
  • Loading branch information
Craigacp committed May 25, 2022
1 parent e44220b commit bfb1c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/src/main/java/org/tribuo/hash/ModHashCodeHasher.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static ModHashCodeHasher deserializeFromProto(int version, String classNa
ModHashCodeHasherProto proto = message.unpack(ModHashCodeHasherProto.class);
ModHashCodeHasher obj = new ModHashCodeHasher();
obj.dimension = proto.getDimension();
obj.postConfig();
obj.provenance = new ModHashCodeHasherProvenance(obj.dimension);
return obj;
}

Expand Down

0 comments on commit bfb1c2b

Please sign in to comment.