HBASE-2919 initTableReducerJob: Unused method parameter.

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@986058 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-08-16 17:21:17 +00:00
parent 81df7e7598
commit 4dbf0c9b69
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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);
}
/**