Update of /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module
In directory usw-pr-cvs1:/tmp/cvs-serv4484
Modified Files:
ProfilerExecutor.java
Log Message:
Forgotten '=' characters added.
Index: ProfilerExecutor.java
===================================================================
RCS file: /cvsroot/javaprofiler/module/net/sourceforge/javaprofiler/module/ProfilerExecutor.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** ProfilerExecutor.java 14 Oct 2001 22:15:16 -0000 1.1.1.1
--- ProfilerExecutor.java 26 Feb 2002 00:32:24 -0000 1.2
***************
*** 176,182 ****
}
if (!"".equals(getCommunShmemID())) {
! options.append(',').append("commun_shmem_id").append(getCommunShmemID());
}
! options.append(',').append("connect_mode").append(modeName(getConnectMode()));
return options.toString();
}
--- 176,182 ----
}
if (!"".equals(getCommunShmemID())) {
! options.append(',').append("commun_shmem_id=").append(getCommunShmemID());
}
! options.append(',').append("connect_mode=").append(modeName(getConnectMode()));
return options.toString();
}
***************
*** 547,550 ****
--- 547,553 ----
/*
* $Log$
+ * Revision 1.2 2002/02/26 00:32:24 stolis
+ * Forgotten '=' characters added.
+ *
* Revision 1.1.1.1 2001/10/14 22:15:16 stolis
* The very first version of profiler module.
|