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:
Sebastian Bazley 2012-12-07 16:15:54 +00:00
parent f8ba20fc59
commit 90cd043e33
1 changed files with 1 additions and 1 deletions

View File

@ -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());