This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a commit to branch 2.1 in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push: new 3033a33e01 Add missing since tag in TabletBalancer, remove unused import 3033a33e01 is described below commit 3033a33e012fd66ef2da948d6944bf74bdd0da67 Author: Dave Marion <dlmar...@apache.org> AuthorDate: Fri Dec 6 14:01:29 2024 +0000 Add missing since tag in TabletBalancer, remove unused import --- .../main/java/org/apache/accumulo/core/spi/balancer/TabletBalancer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/apache/accumulo/core/spi/balancer/TabletBalancer.java b/core/src/main/java/org/apache/accumulo/core/spi/balancer/TabletBalancer.java index 356bbc7223..06235a10a1 100644 --- a/core/src/main/java/org/apache/accumulo/core/spi/balancer/TabletBalancer.java +++ b/core/src/main/java/org/apache/accumulo/core/spi/balancer/TabletBalancer.java @@ -25,7 +25,6 @@ import java.util.SortedMap; import org.apache.accumulo.core.conf.Property; import org.apache.accumulo.core.data.TabletId; -import org.apache.accumulo.core.metadata.schema.Ample.DataLevel; import org.apache.accumulo.core.spi.balancer.data.TServerStatus; import org.apache.accumulo.core.spi.balancer.data.TabletMigration; import org.apache.accumulo.core.spi.balancer.data.TabletServerId; @@ -100,6 +99,7 @@ public interface TabletBalancer { * return migrations for tables within the current DataLevel. * * @return name of current balancing iteration data level + * @since 2.1.4 */ String currentLevel(); }