Skip to content

Commit 7c28079

Browse files
committed
#77: Add deprecation for removal to EntityList which is used with projections in 99.9999...% cases
1 parent 5d07811 commit 7c28079

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

repository/src/main/java/tech/ydb/yoj/repository/db/EntityList.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
import java.util.function.Supplier;
66
import java.util.stream.Stream;
77

8+
/**
9+
* @see <a href="https://github.com/ydb-platform/yoj-project/issues/77">#77</a>
10+
* @deprecated Projections will be removed from the core YOJ API in 3.0.0 and possibly reintroduced as an optional module.
11+
*/
12+
@Deprecated(forRemoval = true)
813
public class EntityList extends LinkedList<Entity<?>> {
914
public static EntityList create() {
1015
return new EntityList();

0 commit comments

Comments
 (0)