From: Pavel V. <va...@us...> - 2002-04-09 08:20:20
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data In directory usw-pr-cvs1:/tmp/cvs-serv12002 Modified Files: SnapshotImpl.java Log Message: don't clear chaged flag Index: SnapshotImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/SnapshotImpl.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** SnapshotImpl.java 13 Mar 2002 21:08:34 -0000 1.18 --- SnapshotImpl.java 9 Apr 2002 08:20:16 -0000 1.19 *************** *** 580,584 **** if ( iter == null ) { iterInner = iprof.getAllThruIterator( 0, whatType, true, ! IProf.isObjWithInfo( whatType), optArg ); pass = false; obj = null; --- 580,585 ---- if ( iter == null ) { iterInner = iprof.getAllThruIterator( 0, whatType, true, ! IProf.isObjWithInfo(whatType), optArg, ! false ); //don't clean changed flag pass = false; obj = null; *************** *** 587,591 **** obj = (IDObjectData) iter.next(); iterInner = iprof.getAllThruIterator( obj.getID().intValue(), whatType, ! true, IProf.isObjWithInfo( whatType), optArg ); } --- 588,593 ---- obj = (IDObjectData) iter.next(); iterInner = iprof.getAllThruIterator( obj.getID().intValue(), whatType, ! true, IProf.isObjWithInfo(whatType), optArg, ! false ); //don't clean changed flag } *************** *** 1146,1149 **** --- 1148,1154 ---- /* * $Log$ + * Revision 1.19 2002/04/09 08:20:16 vachis + * don't clear chaged flag + * * Revision 1.18 2002/03/13 21:08:34 vachis * Confuguration.withFields, Confuguration.isValid() |