Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unrecognizedTagCount (0.09 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Reader.java

            }
    
            for (int unrecognizedTagCount = 1; unrecognizedTagCount > 0; ) {
                int eventType = parser.next();
                if (eventType == XmlPullParser.START_TAG) {
                    unrecognizedTagCount++;
                } else if (eventType == XmlPullParser.END_TAG) {
                    unrecognizedTagCount--;
                }
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 25.3K bytes
    - Viewed (0)
Back to top