This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new d21f41e665 [MINOR] refactor: Remove redundant unused tableEntity
method (#9924)
d21f41e665 is described below
commit d21f41e665ae3afea0c9a5c16692dac570c5f4eb
Author: Bharath Krishna <[email protected]>
AuthorDate: Tue Feb 10 11:44:25 2026 +0530
[MINOR] refactor: Remove redundant unused tableEntity method (#9924)
### What changes were proposed in this pull request?
Minor refactor to remove redundant unused method.
We already have tableFromGravitino method that returns same variable
### Why are the changes needed?
Remove unused
### Does this PR introduce _any_ user-facing change?
NO
### How was this patch tested?
NA
Co-authored-by: Qi Yu <[email protected]>
---
.../main/java/org/apache/gravitino/catalog/EntityCombinedTable.java | 4 ----
1 file changed, 4 deletions(-)
diff --git
a/core/src/main/java/org/apache/gravitino/catalog/EntityCombinedTable.java
b/core/src/main/java/org/apache/gravitino/catalog/EntityCombinedTable.java
index 921b14dcdf..a70699ac7f 100644
--- a/core/src/main/java/org/apache/gravitino/catalog/EntityCombinedTable.java
+++ b/core/src/main/java/org/apache/gravitino/catalog/EntityCombinedTable.java
@@ -59,10 +59,6 @@ public final class EntityCombinedTable implements Table {
this.imported = false;
}
- public TableEntity tableEntity() {
- return tableEntity;
- }
-
public static EntityCombinedTable of(Table table, TableEntity tableEntity) {
return new EntityCombinedTable(table, tableEntity);
}