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/29 00:20:08 UTC

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

Author: sebb
Date: Sun Feb 28 23:20:08 2016
New Revision: 1732819

URL: http://svn.apache.org/viewvc?rev=1732819&view=rev
Log:
CookieManager : Cookie Policy select box content must depend on Cookie implementation
Change default to HC4/standard - forgot to change one of the references in r1732593
Bugzilla Id: 58756

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=1732819&r1=1732818&r2=1732819&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 Sun Feb 28 23:20:08 2016
@@ -421,7 +421,7 @@ public class CookiePanel extends Abstrac
         String tmpName = null;
         for (String clazz : classesToAdd) {
             String shortClazz = clazz.substring(clazz.lastIndexOf('.') + 1);
-            if (CookieManager.DEFAULT_IMPLEMENTATION.equals(clazz)) {
+            if (DEFAULT_IMPLEMENTATION.equals(clazz)) {
                 tmpName = shortClazz;
             }
             selectHandlerPanel.addItem(shortClazz);