|
From: Pavel V. <va...@us...> - 2002-09-11 16:12:22
|
Update of /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes
In directory usw-pr-cvs1:/tmp/cvs-serv11659
Modified Files:
SessionKiller.java
Log Message:
bug fix
by lukas
Index: SessionKiller.java
===================================================================
RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/nodes/SessionKiller.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** SessionKiller.java 31 Jul 2002 21:34:30 -0000 1.3
--- SessionKiller.java 11 Sep 2002 16:12:15 -0000 1.4
***************
*** 52,56 ****
if (session.getVM().isShutdown()) {
// create snapshot
! ProfilerSettings ps=(ProfilerSettings)SystemOption.findObject(ProfilerSettings.class);
if (ps.getSnapshotOnExit()) {
session.createSnapshot();
--- 52,56 ----
if (session.getVM().isShutdown()) {
// create snapshot
! ProfilerSettings ps=(ProfilerSettings)SystemOption.findObject(ProfilerSettings.class, true);
if (ps.getSnapshotOnExit()) {
session.createSnapshot();
***************
*** 75,78 ****
--- 75,82 ----
/*
* $Log$
+ * Revision 1.4 2002/09/11 16:12:15 vachis
+ * bug fix
+ * by lukas
+ *
* Revision 1.3 2002/07/31 21:34:30 vachis
* method renamed to isShutdown()
|