Fix javadoc issue
[transportpce.git] / renderer / src / main / java / org / opendaylight / transportpce / renderer / provisiondevice / tasks / RollbackProcessor.java
index d4d53b522699becac1dfe3c22510f092823ff3eb..667152b6b1253a42e34cfcd560511418fa6da010 100644 (file)
@@ -41,7 +41,7 @@ public class RollbackProcessor {
      * Check if any previously added task requires rollback.
      * Rollback is necessary if just single task requires rollback.
      * @return
-     *   true if any of added tasks requires rollback. false if none of added tasks requires rollback.
+     *     true if any of added tasks requires rollback. false if none of added tasks requires rollback.
      */
     public boolean isRollbackNecessary() {
         for (RollbackTask task: this.tasks) {
@@ -57,7 +57,7 @@ public class RollbackProcessor {
      * It does not matter if any of the tasks requires rollback.
      * All previously added tasks will be rolled back and removed from this processor.
      * @return
-     *   number of tasks rolled back
+     *     number of tasks rolled back
      */
     @SuppressWarnings("checkstyle:IllegalCatch")
     public int rollbackAll() {
@@ -80,7 +80,7 @@ public class RollbackProcessor {
      * Rollback all tasks in case any task has failed.
      * If rollback is necessary, all previously added tasks will be rolled back and removed from this processor.
      * @return
-     *   number of tasks rolled back
+     *     number of tasks rolled back
      */
     public int rollbackAllIfNecessary() {
         if (!isRollbackNecessary()) {