Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reformat
  • Loading branch information
cstamas committed Dec 10, 2025
commit 954a34d2d08452a1acc1b49de51bb87bdae4ba74
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,7 @@ void implicitAndExplicitDefaultIsSame() {
void gh1703One() {
GroupTree groupTree = new GroupTree("root");
// this is redundant, as 'org.apache' IMPLIES 'org.apache.maven.plugins'
groupTree.loadNodes(Stream.of(
"# comment",
"",
"org.apache",
"org.apache.maven.plugins"));
groupTree.loadNodes(Stream.of("# comment", "", "org.apache", "org.apache.maven.plugins"));

assertTrue(groupTree.acceptedGroupId("org.apache")); // this is given
assertTrue(groupTree.acceptedGroupId("org.apache.maven")); // implied by above
Expand Down
Loading