Skip to content

Commit 84622b7

Browse files
committed
make ToManyGetter return List
1 parent 88435a0 commit 84622b7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package io.objectbox.internal;
22

33
import java.io.Serializable;
4+
import java.util.List;
45

56
import io.objectbox.annotation.apihint.Internal;
6-
import io.objectbox.relation.ToMany;
77

88
@Internal
99
public interface ToManyGetter<SOURCE> extends Serializable {
10-
<TARGET> ToMany<TARGET> getToMany(SOURCE object);
10+
<TARGET> List<TARGET> getToMany(SOURCE object);
1111
}

0 commit comments

Comments
 (0)