Fix method name.
This commit is contained in:
parent
c4777e50b1
commit
587de36df6
1 changed files with 3 additions and 3 deletions
|
@ -304,7 +304,7 @@ public class StringList extends ArrayList<String>
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public int lenght()
|
public int length()
|
||||||
{
|
{
|
||||||
int result = 0;
|
int result = 0;
|
||||||
|
|
||||||
|
@ -361,7 +361,7 @@ public class StringList extends ArrayList<String>
|
||||||
{
|
{
|
||||||
String result;
|
String result;
|
||||||
|
|
||||||
StringBuffer buffer = new StringBuffer(this.lenght());
|
StringBuffer buffer = new StringBuffer(this.length());
|
||||||
|
|
||||||
for (String string : this)
|
for (String string : this)
|
||||||
{
|
{
|
||||||
|
@ -382,7 +382,7 @@ public class StringList extends ArrayList<String>
|
||||||
String result;
|
String result;
|
||||||
|
|
||||||
//
|
//
|
||||||
StringList buffer = new StringList(this.lenght() * 2);
|
StringList buffer = new StringList(this.length() * 2);
|
||||||
for (String string : this)
|
for (String string : this)
|
||||||
{
|
{
|
||||||
buffer.append(string);
|
buffer.append(string);
|
||||||
|
|
Loading…
Reference in a new issue