Repository: hadoop
Updated Branches:
  refs/heads/branch-2.8 6a04d9ab6 -> bc21763da


HADOOP-13289. Remove unused variables in TestFairCallQueue. Contributed by Ye 
Zhou.

(cherry picked from commit 13814832331ad691b898cd9f602b0a0a771d7928)
(cherry picked from commit 2231ef22f576d9a7d65276cf90efd0f45cb362f5)


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

Branch: refs/heads/branch-2.8
Commit: bc21763da4f2c140dde4867e4d4d9030acba831c
Parents: 6a04d9a
Author: Akira Ajisaka <aajis...@apache.org>
Authored: Thu Jul 14 23:13:55 2016 -0700
Committer: Akira Ajisaka <aajis...@apache.org>
Committed: Thu Jul 14 23:15:53 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/ipc/TestFairCallQueue.java     | 10 ----------
 1 file changed, 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/bc21763d/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestFairCallQueue.java
----------------------------------------------------------------------
diff --git 
a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestFairCallQueue.java
 
b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestFairCallQueue.java
index d5e5f90..96dea80 100644
--- 
a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestFairCallQueue.java
+++ 
b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/ipc/TestFairCallQueue.java
@@ -32,7 +32,6 @@ import java.util.concurrent.BlockingQueue;
 
 import org.apache.hadoop.security.UserGroupInformation;
 import org.apache.hadoop.conf.Configuration;
-import org.mockito.Matchers;
 
 public class TestFairCallQueue extends TestCase {
   private FairCallQueue<Schedulable> fcq;
@@ -52,14 +51,6 @@ public class TestFairCallQueue extends TestCase {
     return mockCall(id, 0);
   }
 
-  // A scheduler which always schedules into priority zero
-  private RpcScheduler alwaysZeroScheduler;
-  {
-    RpcScheduler sched = mock(RpcScheduler.class);
-    when(sched.getPriorityLevel(Matchers.<Schedulable>any())).thenReturn(0); 
// always queue 0
-    alwaysZeroScheduler = sched;
-  }
-
   @SuppressWarnings("deprecation")
   public void setUp() {
     Configuration conf = new Configuration();
@@ -124,7 +115,6 @@ public class TestFairCallQueue extends TestCase {
 
   public void testOfferSucceedsWhenScheduledLowPriority() {
     // Scheduler will schedule into queue 0 x 5, then queue 1
-    RpcScheduler sched = mock(RpcScheduler.class);
     int mockedPriorities[] = {0, 0, 0, 0, 0, 1, 0};
     for (int i = 0; i < 5; i++) { assertTrue(fcq.offer(mockCall("c", 
mockedPriorities[i]))); }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org

Reply via email to