Skip to content

Commit 6164562

Browse files
committed
noticket: Add @InternalApi annotation to TableQueryImpl and amend its Javadoc
1 parent 5b29220 commit 6164562

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

repository-ydb-v2/src/main/java/tech/ydb/yoj/repository/ydb/table/YdbTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public final Class<T> getType() {
101101
public final TableDescriptor<T> getTableDescriptor() {
102102
return tableDescriptor;
103103
}
104-
104+
105105
public final EntitySchema<T> getSchema() {
106106
return schema;
107107
}

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package tech.ydb.yoj.repository.db;
22

33
import com.google.common.collect.Sets;
4+
import tech.ydb.yoj.InternalApi;
45
import tech.ydb.yoj.repository.db.cache.FirstLevelCache;
56
import tech.ydb.yoj.repository.db.list.ListRequest;
67

@@ -15,9 +16,11 @@
1516
import static java.util.stream.Collectors.toSet;
1617

1718
/**
18-
* Utility class for internal use only. This class is not part of the public API and should not be
19-
* used directly by client code.
19+
* Utility class for {@link Table} implementation; <strong>for internal use only</strong>.
20+
* This class is <strong>not</strong> part of the public API and <strong>should not</strong>
21+
* be used directly by client code.
2022
*/
23+
@InternalApi
2124
public final class TableQueryImpl {
2225
private TableQueryImpl() {
2326
}

0 commit comments

Comments
 (0)