You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2011/11/14 20:32:35 UTC

svn commit: r1201841 - /jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestCacheManager.java

Author: pmouawad
Date: Mon Nov 14 19:32:35 2011
New Revision: 1201841

URL: http://svn.apache.org/viewvc?rev=1201841&view=rev
Log:
Made instance class static

Modified:
    jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestCacheManager.java

Modified: jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestCacheManager.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestCacheManager.java?rev=1201841&r1=1201840&r2=1201841&view=diff
==============================================================================
--- jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestCacheManager.java (original)
+++ jmeter/trunk/test/src/org/apache/jmeter/protocol/http/control/TestCacheManager.java Mon Nov 14 19:32:35 2011
@@ -111,7 +111,7 @@ public class TestCacheManager extends JM
         }
     }
     
-    private class HttpURLConnectionStub extends HttpURLConnection {
+    private static class HttpURLConnectionStub extends HttpURLConnection {
         private Map<String, List<String>> properties;
         
         public HttpURLConnectionStub(HttpMethod method, URL url) {