From ee30d050dc9112bc74eb02452bd9b3699d278f07 Mon Sep 17 00:00:00 2001 From: Matteo Bertozzi Date: Fri, 29 May 2015 17:55:39 -0700 Subject: [PATCH] HBASE-13813 Fix Javadoc warnings in Procedure.java (Stephen Yuan Jiang) --- .../java/org/apache/hadoop/hbase/procedure2/Procedure.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 b2c23c944b3..00a12ebb73e 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 implements Comparable { * 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 implements Comparable { * 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;