Normalize parameter name.
This commit is contained in:
parent
e7ea502443
commit
b4a46b0b42
1 changed files with 2 additions and 2 deletions
|
@ -31,9 +31,9 @@ public class StringList extends ArrayList<String> implements CharSequence
|
|||
/**
|
||||
*
|
||||
*/
|
||||
public StringList(final int size)
|
||||
public StringList(final int initialCapacity)
|
||||
{
|
||||
super(size);
|
||||
super(initialCapacity);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue