]> source.dussan.org Git - aspectj.git/commitdiff
Minor fix to avoid crashing whilst dumping :)
authoraclement <aclement>
Wed, 25 Aug 2004 13:26:09 +0000 (13:26 +0000)
committeraclement <aclement>
Wed, 25 Aug 2004 13:26:09 +0000 (13:26 +0000)
weaver/src/org/aspectj/weaver/Dump.java

index 5cd6a4e3c4c15f73992978a77dcf9634983e0f2a..c0a63d2953730721294d1c3a6c69c521f3314fd0 100644 (file)
@@ -349,7 +349,7 @@ public class Dump {
             if (o instanceof Exception) {
                 println((Exception)o);
             } else {
-               println(i.next().toString());
+               println(o.toString());
             }
                }
        }