made notebuf (temporarily) public
authoradam <adam@megacz.com>
Mon, 16 Aug 2004 00:01:08 +0000 (00:01 +0000)
committeradam <adam@megacz.com>
Mon, 16 Aug 2004 00:01:08 +0000 (00:01 +0000)
darcs-hash:20040816000108-5007d-4bc26e6eb1b6214239e39b211118687aa7da8cb1.gz

src/org/ibex/util/Log.java

index 70f1054..7b3a0d7 100644 (file)
@@ -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);