Skip to content

Commit 42628ad

Browse files
committed
fix for issue #25
1 parent 6712506 commit 42628ad

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nitrite/src/main/java/org/dizitart/no2/Document.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ public void remove() {
208208
}
209209

210210
private boolean validId(Object value) {
211-
return value instanceof Long
212-
&& Math.floor(Math.log10((long) value) + 1) == 19;
211+
return value instanceof Long;
213212
}
214213
}

0 commit comments

Comments
 (0)