Skip to content

Commit 0ae511e

Browse files
author
kevin.w.wall
committed
Changes for Javadoc.
1 parent d9b3436 commit 0ae511e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/owasp/esapi/reference/IntegerAccessReferenceMap.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,38 +33,38 @@ public class IntegerAccessReferenceMap extends AbstractAccessReferenceMap<String
3333
int count = 1;
3434

3535
/**
36-
* {@inheritDoc}
36+
* TODO Javadoc
3737
*/
3838
public IntegerAccessReferenceMap()
3939
{
4040
}
4141

4242
/**
43-
* {@inheritDoc}
43+
* TODO Javadoc
4444
*/
4545
public IntegerAccessReferenceMap(int initialSize)
4646
{
4747
super(initialSize);
4848
}
4949

5050
/**
51-
* {@inheritDoc}
51+
* TODO Javadoc
5252
*/
5353
public IntegerAccessReferenceMap(Set<Object> directReferences)
5454
{
5555
super(directReferences);
5656
}
5757

5858
/**
59-
* {@inheritDoc}
59+
* TODO Javadoc
6060
*/
6161
public IntegerAccessReferenceMap(Set<Object> directReferences, int initialSize)
6262
{
6363
super(directReferences, initialSize);
6464
}
6565

6666
/**
67-
* {@inheritDoc}
67+
* TODO Javadoc
6868
*/
6969
protected synchronized String getUniqueReference() {
7070
return "" + count++; // returns a string version of the counter

0 commit comments

Comments
 (0)