You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by mb...@apache.org on 2015/05/30 05:51:18 UTC

[2/2] hbase git commit: HBASE-13813 Fix Javadoc warnings in Procedure.java (Stephen Yuan Jiang)

HBASE-13813 Fix Javadoc warnings in Procedure.java (Stephen Yuan Jiang)


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

Branch: refs/heads/branch-1
Commit: ec76f41611e0c42732d9cac2a86419e518b93007
Parents: 20e01d2
Author: Matteo Bertozzi <ma...@cloudera.com>
Authored: Fri May 29 17:55:39 2015 -0700
Committer: Matteo Bertozzi <ma...@cloudera.com>
Committed: Fri May 29 20:50:40 2015 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hbase/procedure2/Procedure.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/ec76f416/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/Procedure.java
----------------------------------------------------------------------
diff --git a/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/Procedure.java b/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/Procedure.java
index b2c23c9..00a12eb 100644
--- a/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/Procedure.java
+++ b/hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/Procedure.java
@@ -84,8 +84,8 @@ public abstract class Procedure<TEnvironment> implements Comparable<Procedure> {
    * of the execution.
    * @param env the environment passed to the ProcedureExecutor
    * @return a set of sub-procedures or null if there is nothing else to execute.
-   * @throw ProcedureYieldException the procedure will be added back to the queue and retried later
-   * @throw InterruptedException the procedure will be added back to the queue and retried later
+   * @throws ProcedureYieldException the procedure will be added back to the queue and retried later
+   * @throws InterruptedException the procedure will be added back to the queue and retried later
    */
   protected abstract Procedure[] execute(TEnvironment env)
     throws ProcedureYieldException, InterruptedException;
@@ -99,7 +99,7 @@ public abstract class Procedure<TEnvironment> implements Comparable<Procedure> {
    * of the execution.
    * @param env the environment passed to the ProcedureExecutor
    * @throws IOException temporary failure, the rollback will retry later
-   * @throw InterruptedException the procedure will be added back to the queue and retried later
+   * @throws InterruptedException the procedure will be added back to the queue and retried later
    */
   protected abstract void rollback(TEnvironment env)
     throws IOException, InterruptedException;