Skip to content

Commit

Permalink
javadoc fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Lamy <[email protected]>
  • Loading branch information
olamy committed Nov 28, 2021
1 parent e176401 commit 13817f4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ public interface ArtifactStore
* </p>
* If there are known to be groupIds: org.codehaus.mojo, org.apache.maven and commons-io then
* <pre>
* assertEquals(new HashSet&lt;String>(Arrays.asList("commons-io","org")), getGroupIds("")); // Query root level
* assertEquals(new HashSet&lt;String>(Arrays.asList("org.codehaus", "org.apache")), getGroupIds("org")); // query with a prefix
* assertEquals(new HashSet&lt;String>(Arrays.asList("org.codehaus.mojo")), getGroupIds("org.codehaus"));
* assertEquals(new HashSet&lt;String&gt;(Arrays.asList("commons-io","org")), getGroupIds("")); // Query root level
* assertEquals(new HashSet&lt;String&gt;(Arrays.asList("org.codehaus", "org.apache")), getGroupIds("org")); // query with a prefix
* assertEquals(new HashSet&lt;String&gt;(Arrays.asList("org.codehaus.mojo")), getGroupIds("org.codehaus"));
* </pre>
* <p>
* Note that while the existence of groupId <code>org.codehaus.mojo</code> implies that there must be groupIds
Expand Down

0 comments on commit 13817f4

Please sign in to comment.