From fdf38d6559c8e85196c9c665aa0d77bcdea6cf4e Mon Sep 17 00:00:00 2001 From: borg-0300 Date: Sun, 11 Sep 2005 20:41:55 +0000 Subject: [PATCH] smaller StringBuffer git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@705 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/Blacklist_p.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/htroot/Blacklist_p.java b/htroot/Blacklist_p.java index b305c5064..e03eaa738 100644 --- a/htroot/Blacklist_p.java +++ b/htroot/Blacklist_p.java @@ -7,8 +7,9 @@ // // This File is contributed by Alexander Schier // -// last major change: $LastChangedDate$ by $LastChangedBy$ -// Revision: $LastChangedRevision$ +// $Date$ +// $Author$ +// $Revision$ // // 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 @@ -154,7 +155,7 @@ public class Blacklist_p { // Read the List 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(); while (iter.hasNext()){ line = (String) iter.next();