[Laszlo-checkins] r7733 - openlaszlo/trunk/WEB-INF/lps/lfc/debugger

ptw@openlaszlo.org ptw at openlaszlo.org
Fri Jan 4 15:53:15 PST 2008


Author: ptw
Date: 2008-01-04 15:53:13 -0800 (Fri, 04 Jan 2008)
New Revision: 7733

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzMemory.lzs
Log:
Change 20080104-ptw-0 by ptw at dueling-banjos.local on 2008-01-04 18:50:26 EST
    in /Users/ptw/OpenLaszlo/ringding-2
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Remove stray debug code left in LzMemory

Bugs Fixed:
LPP-5325 'MemoryTracer: changeset 7573 contains some of Tucker's Debug-code'

Technical Reviewer: a.bargull at intensis.de (pending)

Details:
    Corrected as suggested by Andre

Tests:
    Inspection



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzMemory.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzMemory.lzs	2008-01-04 21:37:28 UTC (rev 7732)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/debugger/LzMemory.lzs	2008-01-04 23:53:13 UTC (rev 7733)
@@ -208,11 +208,6 @@
     var wasMarked = this.isMarked(o);
     var wasLeaked = (wasMarked === null);
 
-    if (o == global.NamedNodeMap.prototype) {
-      Debug.debug("wasMarked: %s, wasLeaked: %s", wasMarked, wasLeaked);
-      Debug.inspect(o);
-    }
-
     // Make sure we didn't already get here via another path
     if (wasMarked) {
       continue;
@@ -255,7 +250,6 @@
       this.leaks.push(o);
     }
 
-    // Annotate why this object is alive
     // Mark the object
     if (! this.mark(o)) {
       // Don't trace into objects we can't mark



More information about the Laszlo-checkins mailing list