You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by vj...@apache.org on 2020/06/22 09:48:05 UTC

[hbase] branch branch-2 updated: HBASE-24611 : Fix for ambiguous reference (ADDENDUM)

This is an automated email from the ASF dual-hosted git repository.

vjasani pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2 by this push:
     new f3d47d3  HBASE-24611 : Fix for ambiguous reference (ADDENDUM)
f3d47d3 is described below

commit f3d47d3c8e3b46fb9c0485c04b6bbe17e66245be
Author: Viraj Jasani <vj...@apache.org>
AuthorDate: Mon Jun 22 15:07:11 2020 +0530

    HBASE-24611 : Fix for ambiguous reference (ADDENDUM)
---
 .../main/java/org/apache/hadoop/hbase/client/SnapshotDescription.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/SnapshotDescription.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/SnapshotDescription.java
index b003e0e..45b9fdf 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/SnapshotDescription.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/SnapshotDescription.java
@@ -39,7 +39,7 @@ public class SnapshotDescription {
   private final int version;
 
   public SnapshotDescription(String name) {
-    this(name, null);
+    this(name, (TableName) null);
   }
 
   /**