Remove an unneeded line 09/99809/1
authorRobert Varga <robert.varga@pantheon.tech>
Sun, 20 Feb 2022 15:00:16 +0000 (16:00 +0100)
committerRobert Varga <nite@hq.sk>
Sun, 20 Feb 2022 19:41:45 +0000 (19:41 +0000)
We are at the end of the loop, no need for a continue statement.

Change-Id: I79478fcbda4820c3923fae39dfec5fe7c47a0e70
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
(cherry picked from commit 4460442fba0d2efe0249a42b371ba21f1c898273)

binding/mdsal-binding-generator/src/main/java/org/opendaylight/mdsal/binding/generator/impl/reactor/AbstractCompositeGenerator.java

index 93b8debced4c228300c99a0f15b6712e948e9754..810d2d876d493a3e36a6187c4e3f5da57e8249f0 100644 (file)
@@ -532,7 +532,6 @@ abstract class AbstractCompositeGenerator<T extends EffectiveStatement<?, ?>> ex
                 }
             } else {
                 LOG.trace("Ignoring statement {}", stmt);
-                continue;
             }
         }