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


Reply via email to