smaller StringBuffer

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@705 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
borg-0300 19 years ago
parent d1de71e9f6
commit fdf38d6559

@ -7,8 +7,9 @@
// //
// This File is contributed by Alexander Schier // This File is contributed by Alexander Schier
// //
// last major change: $LastChangedDate$ by $LastChangedBy$ // $Date$
// Revision: $LastChangedRevision$ // $Author$
// $Revision$
// //
// This program is free software; you can redistribute it and/or modify // This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by // it under the terms of the GNU General Public License as published by
@ -154,7 +155,7 @@ public class Blacklist_p {
// Read the List // Read the List
final Vector list = listManager.getListArray(new File(listManager.listsPath, filename)); final Vector list = listManager.getListArray(new File(listManager.listsPath, filename));
final StringBuffer out = new StringBuffer(list.size() * 128); final StringBuffer out = new StringBuffer(list.size() * 64);
final Iterator iter = list.iterator(); final Iterator iter = list.iterator();
while (iter.hasNext()){ while (iter.hasNext()){
line = (String) iter.next(); line = (String) iter.next();

Loading…
Cancel
Save