Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/zinggAI/zingg into main
Browse files Browse the repository at this point in the history
  • Loading branch information
sonalgoyal committed Jan 13, 2022
2 parents e9349ee + fcc99bd commit f569bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/zingg/hash/Round.java
Expand Up @@ -13,7 +13,7 @@ public Round() {

@Override
public Long call(Double field) {
return Math.round(field);
return field == null ? null : Math.round(field);
}

@Override
Expand Down

0 comments on commit f569bab

Please sign in to comment.