This is an automated email from the ASF dual-hosted git repository.
jmclean 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 379c617ee7 [#7217] fix(core): Missing @override annotation in
BaseFileset (#7239)
379c617ee7 is described below
commit 379c617ee75acbf39d5c1c6806e3a884928d1662
Author: Lord of Abyss <[email protected]>
AuthorDate: Mon May 26 08:17:00 2025 +0800
[#7217] fix(core): Missing @override annotation in BaseFileset (#7239)
### What changes were proposed in this pull request?
Fix Missing @override annotation in BaseFileset.
### Why are the changes needed?
Fix: #7217
### Does this PR introduce _any_ user-facing change?
no
### How was this patch tested?
local test.
---
core/src/main/java/org/apache/gravitino/connector/BaseFileset.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/core/src/main/java/org/apache/gravitino/connector/BaseFileset.java
b/core/src/main/java/org/apache/gravitino/connector/BaseFileset.java
index 96ff2ce6e7..636c5b5fde 100644
--- a/core/src/main/java/org/apache/gravitino/connector/BaseFileset.java
+++ b/core/src/main/java/org/apache/gravitino/connector/BaseFileset.java
@@ -65,6 +65,7 @@ public abstract class BaseFileset implements Fileset {
}
/** @return The storage locations of the fileset. */
+ @Override
public Map<String, String> storageLocations() {
return storageLocations;
}