khammond 01/09/27 22:58:11
Modified: src/org/apache/jmeter/gui MainFrame.java
Log:
Removed JDK1.3 method calls. This class is now JDK1.2 compatible.
Revision Changes Path
1.8 +6 -2 jakarta-jmeter/src/org/apache/jmeter/gui/MainFrame.java
Index: MainFrame.java
===================================================================
RCS file: /home/cvs/jakarta-jmeter/src/org/apache/jmeter/gui/MainFrame.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- MainFrame.java 2001/07/26 00:34:44 1.7
+++ MainFrame.java 2001/09/28 05:58:11 1.8
@@ -64,7 +64,7 @@
* Title: JMeter Description: Copyright: Copyright (c) 2000 Company: Apache
*
*@author Michael Stover
- *@created $Date: 2001/07/26 00:34:44 $
+ *@created $Date: 2001/09/28 05:58:11 $
*@version 1.0
***********************************************************/
@@ -160,7 +160,11 @@
JSplitPane treeAndMain = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
treeAndMain.setLeftComponent(treePanel);
treeAndMain.setRightComponent(new JScrollPane(mainPanel));
- treeAndMain.setResizeWeight(.2);
+
+ // The setResizeWeight() method was added to JDK1.3. For now, JMeter
should
+ // remain compatible with JDK1.2.
+ //treeAndMain.setResizeWeight(.2);
+
treeAndMain.setContinuousLayout(true);
{
gbc.gridy++;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]