- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for countNodes (0.04 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
private static int countNodes(MetadataTreeNode tree) { if (tree == null) { return 0; } int count = 1; MetadataTreeNode[] kids = tree.getChildren(); if (kids == null || kids.length < 1) { return count; } for (MetadataTreeNode n : kids) { count += countNodes(n); } return count;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 13K bytes - Click Count (0)