You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2016/02/27 03:00:54 UTC

svn commit: r1732594 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CookiePanel.java

Author: sebb
Date: Sat Feb 27 02:00:53 2016
New Revision: 1732594

URL: http://svn.apache.org/viewvc?rev=1732594&view=rev
Log:
Change default to HC4/standard
Also fix init method

Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CookiePanel.java

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CookiePanel.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CookiePanel.java?rev=1732594&r1=1732593&r2=1732594&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CookiePanel.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/gui/CookiePanel.java Sat Feb 27 02:00:53 2016
@@ -333,7 +333,7 @@ public class CookiePanel extends Abstrac
             new JCheckBox(JMeterUtils.getResString("clear_cookies_per_iter"), false); //$NON-NLS-1$
         policy = new JLabeledChoice(
                 JMeterUtils.getResString("cookie_manager_policy"), //$NON-NLS-1$
-                getPolicies(CookieManager.DEFAULT_IMPLEMENTATION));
+                getPolicies(DEFAULT_IMPLEMENTATION));
         setLayout(new BorderLayout());
         setBorder(makeBorder());
         JPanel northPanel = new JPanel();