You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by re...@apache.org on 2019/08/22 04:36:32 UTC

[hbase] branch branch-1.3 updated: HBASE-22861 [Addendum] Remove unassign(not exist in branch-1.3) method in MockRegionServerServicesWithWALs

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

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


The following commit(s) were added to refs/heads/branch-1.3 by this push:
     new a4a7c0e  HBASE-22861 [Addendum] Remove unassign(not exist in branch-1.3) method in MockRegionServerServicesWithWALs
a4a7c0e is described below

commit a4a7c0edc259ed49760f752881bd8a81b8255452
Author: Reid Chan <re...@apache.org>
AuthorDate: Thu Aug 22 12:36:00 2019 +0800

    HBASE-22861 [Addendum] Remove unassign(not exist in branch-1.3) method in MockRegionServerServicesWithWALs
---
 .../org/apache/hadoop/hbase/MockRegionServerServicesWithWALs.java    | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/MockRegionServerServicesWithWALs.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/MockRegionServerServicesWithWALs.java
index 69290b2..7f2606f 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/MockRegionServerServicesWithWALs.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/MockRegionServerServicesWithWALs.java
@@ -199,11 +199,6 @@ public class MockRegionServerServicesWithWALs implements RegionServerServices {
   }
 
   @Override
-  public void unassign(byte[] regionName) throws IOException {
-    rss.unassign(regionName);
-  }
-
-  @Override
   public void addToOnlineRegions(Region r) {
     rss.addToOnlineRegions(r);
   }