Skip to content

Commit 3c0da99

Browse files
committed
fix javadoc warnings
1 parent 9faa8b8 commit 3c0da99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/org/fressian/impl/InterleavedIndexHopMap.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void clear() {
4747

4848
/**
4949
*
50-
* @param k, non-null
50+
* @param k non-null
5151
* @return the integer associated with k, or -1 if not present
5252
*/
5353
public int get(Object k){
@@ -76,7 +76,7 @@ public int get(Object k){
7676
* Puts k in the map if it was not already present.
7777
* Returns -1 if k was freshly added
7878
* Returns k's index if k was already in the map.
79-
* @param k, non-null
79+
* @param k non-null
8080
* @return the integer associated with k or -1
8181
*/
8282
public int oldIndex(Object k) {
@@ -95,7 +95,7 @@ public boolean isEmpty() {
9595
/**
9696
* Puts k in the map (if not present) and assigns and returns the index associated with it
9797
* assigns ints monotonically from 0
98-
* @param k, non-null
98+
* @param k non-null
9999
* @return the integer associated with k
100100
*/
101101
public int intern(Object k){

0 commit comments

Comments
 (0)