Remove removeAll method.

This commit is contained in:
Christian P. MOMON 2013-07-19 12:37:20 +02:00
parent 48e1150886
commit ccff14d17b

View file

@ -327,7 +327,7 @@ public class StringList extends ArrayList<String>
String merge = this.toString();
removeAll();
clear();
add(merge);
//
@ -335,20 +335,6 @@ public class StringList extends ArrayList<String>
return result;
}
/**
*
*/
public StringList removeAll()
{
StringList result;
removeRange(0, this.size() - 1);
//
result = this;
return result;
}
/**
*
*/