Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 17, 2023
1 parent beae5e1 commit 876419b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public ArrayStack(final int initialSize) {
/**
* Return {@code true} if this stack is currently empty.
* <p>
* This method exists for compatibility with {@code java.util.Stack}.
* This method exists for compatibility with {@link java.util.Stack}.
* New users of this class should use {@code isEmpty} instead.
*
* @return true if the stack is currently empty
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

/**
* A StaticBucketMap is an efficient, thread-safe implementation of
* {@code java.util.Map} that performs well in a highly
* {@link java.util.Map} that performs well in a highly
* thread-contentious environment. The map supports very efficient
* {@link #get(Object) get}, {@link #put(Object,Object) put},
* {@link #remove(Object) remove} and {@link #containsKey(Object) containsKey}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
* for the collection. Basically, the operation is performed against your
* collection implementation, and an identical operation is performed against a
* <i>confirmed</i> collection implementation. A confirmed collection
* implementation is something like {@code java.util.ArrayList}, which is
* implementation is something like {@link java.util.ArrayList}, which is
* known to conform exactly to its collection interface's contract. After the
* operation takes place on both your collection implementation and the
* confirmed collection implementation, the two collections are compared to see
Expand Down

0 comments on commit 876419b

Please sign in to comment.