You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2016/07/06 16:12:06 UTC

hbase git commit: HBASE-16180 Fix ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD findbugs introduced by parent

Repository: hbase
Updated Branches:
  refs/heads/branch-1 368c32e32 -> 2d6cdfb10


HBASE-16180 Fix ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD findbugs introduced by parent


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2d6cdfb1
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2d6cdfb1
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2d6cdfb1

Branch: refs/heads/branch-1
Commit: 2d6cdfb10aac7ad287c5325e2dd12cfc4c16ff15
Parents: 368c32e
Author: stack <st...@apache.org>
Authored: Tue Jul 5 15:43:56 2016 -0700
Committer: stack <st...@apache.org>
Committed: Wed Jul 6 09:12:00 2016 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/hadoop/hbase/io/hfile/HFileWriterV2.java  | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/2d6cdfb1/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileWriterV2.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileWriterV2.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileWriterV2.java
index 47e7952..054a769 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileWriterV2.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileWriterV2.java
@@ -46,6 +46,8 @@ import org.apache.hadoop.io.Writable;
  * Writes HFile format version 2.
  */
 @InterfaceAudience.Private
+@edu.umd.cs.findbugs.annotations.SuppressWarnings(value="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD",
+  justification="Understood but doing it anyway; HBASE-14730")
 public class HFileWriterV2 extends AbstractHFileWriter {
   static final Log LOG = LogFactory.getLog(HFileWriterV2.class);