Skip to content

Commit

Permalink
fix for issue #25
Browse files Browse the repository at this point in the history
  • Loading branch information
anidotnet committed Oct 24, 2017
1 parent 6712506 commit 42628ad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nitrite/src/main/java/org/dizitart/no2/Document.java
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ public void remove() {
}

private boolean validId(Object value) {
return value instanceof Long
&& Math.floor(Math.log10((long) value) + 1) == 19;
return value instanceof Long;
}
}

0 comments on commit 42628ad

Please sign in to comment.