HBASE-10277 refactor AsyncProcess ADDENDUM fix javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1565031 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
sershe 2014-02-06 01:12:42 +00:00
parent 3cc587b961
commit 6905e533e3
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ public class MultiResponse {
* Add the pair to the container, grouped by the regionName
*
* @param regionName
* @param index the original index of the Action (request).
* @param result the result; will be empty for successful Put and Delete actions.
* @param originalIndex the original index of the Action (request).
* @param resOrEx the result or error; will be empty for successful Put and Delete actions.
*/
public void add(byte[] regionName, int originalIndex, Object resOrEx) {
Map<Integer, Object> rs = results.get(regionName);