diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Future.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Future.java index 1247fd45d7e..99a8baae7d0 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Future.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Future.java @@ -26,6 +26,9 @@ import org.apache.hadoop.hbase.classification.InterfaceStability; */ @InterfaceAudience.Public @InterfaceStability.Evolving -public interface Future extends io.netty.util.concurrent.Future { -} +@edu.umd.cs.findbugs.annotations.SuppressWarnings(value="NM_SAME_SIMPLE_NAME_AS_INTERFACE", + justification="Agree that this can be confusing but folks will pull in this and think twice " + + "about pulling in netty; incidence of confusion should be rare in this case.") +public interface Future extends io.netty.util.concurrent.Future { +} \ No newline at end of file