Skip to content

Commit

Permalink
Updates site and fixes some javadoc issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianburton committed Feb 27, 2024
1 parent c7225f3 commit 33082f8
Show file tree
Hide file tree
Showing 4 changed files with 311 additions and 257 deletions.
28 changes: 7 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
<classpathScope>test</classpathScope>
<arguments>
<argument>-classpath</argument>
<classpath />
<classpath/>
<argument>-ea</argument>
<argument>org.javimmutable.collections.stress_test.RunStressTests</argument>
<!-- <argument>&#45;&#45;test</argument>-->
Expand All @@ -248,29 +248,15 @@
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- change bcel library used during site generation to solve ClassFormatException -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.5.0</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-jar</artifactId>
<version>1.1</version>
<exclusions>
<exclusion>
<groupId>org.apache.bcel</groupId>
<artifactId>bcel</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>bcel-findbugs</artifactId>
<version>6.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.12.1</version>
</plugin>
</plugins>
</build>
Expand All @@ -281,7 +267,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public boolean containsKey(Object o)
}

/**
* Uses O(n) traversal of the {@link IMap} to search for a matching value.
* Uses O(n) traversal of the {@link org.javimmutable.collections.IMap} to search for a matching value.
*/
@Override
public boolean containsValue(Object o)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

/**
* Singleton implementation of {@link IMap} that contains no elements.
* When a value is assigned to the map a {@link IHashMap} is created that
* When a value is assigned to the map a {@link IMap} is created that
* manages hash collisions using a tree if key is Comparable or a list otherwise.
*/
@Immutable
Expand Down
Loading

0 comments on commit 33082f8

Please sign in to comment.