mirror of https://github.com/apache/jmeter.git
Use correct default constant
git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1418377 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f8ba20fc59
commit
90cd043e33
|
|
@ -182,7 +182,7 @@ public class TCPConfigGui extends AbstractConfigGui {
|
|||
private JPanel createCloseConnectionPanel() {
|
||||
JLabel label = new JLabel(JMeterUtils.getResString("closeconnection")); // $NON-NLS-1$
|
||||
|
||||
closeConnection = new JCheckBox("", false);
|
||||
closeConnection = new JCheckBox("", TCPSampler.CLOSE_CONNECTION_DEFAULT);
|
||||
label.setLabelFor(closeConnection);
|
||||
|
||||
JPanel closeConnectionPanel = new JPanel(new FlowLayout());
|
||||
|
|
|
|||
Loading…
Reference in New Issue