Fix method name.

This commit is contained in:
Christian P. MOMON 2013-08-12 11:39:24 +02:00
parent c4777e50b1
commit 587de36df6

View file

@ -304,7 +304,7 @@ public class StringList extends ArrayList<String>
/**
*
*/
public int lenght()
public int length()
{
int result = 0;
@ -361,7 +361,7 @@ public class StringList extends ArrayList<String>
{
String result;
StringBuffer buffer = new StringBuffer(this.lenght());
StringBuffer buffer = new StringBuffer(this.length());
for (String string : this)
{
@ -382,7 +382,7 @@ public class StringList extends ArrayList<String>
String result;
//
StringList buffer = new StringList(this.lenght() * 2);
StringList buffer = new StringList(this.length() * 2);
for (String string : this)
{
buffer.append(string);