Skip to content

Commit c689ab8

Browse files
ToMany: drop outdated @nullable annotation.
1 parent ff55167 commit c689ab8

File tree

1 file changed

+1
-1
lines changed
  • objectbox-java/src/main/java/io/objectbox/relation

1 file changed

+1
-1
lines changed

objectbox-java/src/main/java/io/objectbox/relation/ToMany.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ private void removeStandaloneRelations(Cursor cursor, long sourceEntityId, List<
865865
}
866866

867867
/** The target array may not contain non-persisted entities. */
868-
private void addStandaloneRelations(Cursor cursor, long sourceEntityId, @Nullable TARGET[] added,
868+
private void addStandaloneRelations(Cursor cursor, long sourceEntityId, TARGET[] added,
869869
IdGetter<TARGET> targetIdGetter, boolean remove) {
870870
int length = added.length;
871871
long[] targetIds = new long[length];

0 commit comments

Comments
 (0)