From: adam Date: Mon, 16 Aug 2004 00:01:08 +0000 (+0000) Subject: made notebuf (temporarily) public X-Git-Url: http://git.megacz.com/?p=org.ibex.util.git;a=commitdiff_plain;h=d2efb650e21d8880880ceff82ebde0aaf3027253 made notebuf (temporarily) public darcs-hash:20040816000108-5007d-4bc26e6eb1b6214239e39b211118687aa7da8cb1.gz --- diff --git a/src/org/ibex/util/Log.java b/src/org/ibex/util/Log.java index 70f1054..7b3a0d7 100644 --- a/src/org/ibex/util/Log.java +++ b/src/org/ibex/util/Log.java @@ -57,7 +57,7 @@ public class Log { } public static void clearnotes() { if (!notes) return; notebuf().setLength(0); } private static Hashtable notebufs = new Hashtable(); - private static StringBuffer notebuf() { + public static StringBuffer notebuf() { StringBuffer ret = (StringBuffer)notebufs.get(Thread.currentThread()); if (ret == null) { ret = new StringBuffer(16 * 1024);