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 2010/08/16 19:21:18 UTC

svn commit: r986058 - in /hbase/trunk: CHANGES.txt src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java

Author: stack
Date: Mon Aug 16 17:21:17 2010
New Revision: 986058

URL: http://svn.apache.org/viewvc?rev=986058&view=rev
Log:
HBASE-2919 initTableReducerJob: Unused method parameter.

Modified:
    hbase/trunk/CHANGES.txt
    hbase/trunk/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java

Modified: hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=986058&r1=986057&r2=986058&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Mon Aug 16 17:21:17 2010
@@ -476,6 +476,8 @@ Release 0.21.0 - Unreleased
                Andrew Purtell)
    HBASE-2908  Wrong order of null-check [in TIF] (Libor Dener via Stack)
    HBASE-2909  SoftValueSortedMap is broken, can generate NPEs
+   HBASE-2919  initTableReducerJob: Unused method parameter
+               (Libor Dener via Stack)
 
   IMPROVEMENTS
    HBASE-1760  Cleanup TODOs in HTable

Modified: hbase/trunk/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java?rev=986058&r1=986057&r2=986058&view=diff
==============================================================================
--- hbase/trunk/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java (original)
+++ hbase/trunk/src/main/java/org/apache/hadoop/hbase/mapreduce/TableMapReduceUtil.java Mon Aug 16 17:21:17 2010
@@ -141,7 +141,7 @@ public class TableMapReduceUtil {
   public static void initTableReducerJob(String table,
     Class<? extends TableReducer> reducer, Job job,
     Class partitioner) throws IOException {
-    initTableReducerJob(table, reducer, job, null, null, null, null);
+    initTableReducerJob(table, reducer, job, partitioner, null, null, null);
   }
 
   /**