Remove an unneeded continue
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / repo / ArgumentContextUtils.java
index 9140d998bf8768085912aba7094ae93a656e56fd..3999161280df1bd98746a64f31fedb3bc692ab7c 100644 (file)
@@ -175,7 +175,6 @@ abstract class ArgumentContextUtils {
             } else {
                 verify(child instanceof QuotedStringContext, "Unexpected fragment component %s", child);
                 sb.append(unquoteString((QuotedStringContext) child, ref));
-                continue;
             }
         }
         return sb.toString();