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 2016/11/27 15:39:43 UTC

svn commit: r1771603 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParser.java

Author: pmouawad
Date: Sun Nov 27 15:39:42 2016
New Revision: 1771603

URL: http://svn.apache.org/viewvc?rev=1771603&view=rev
Log:
Bug 59934 - CSSParser: several threads can compute the same CSS simultaneously when not cached yet (nightly build after 3.0)
Fix compilation error
Bugzilla Id: 59934

Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParser.java

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParser.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParser.java?rev=1771603&r1=1771602&r2=1771603&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParser.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/parser/CssParser.java Sun Nov 27 15:39:42 2016
@@ -40,7 +40,7 @@ import com.github.benmanes.caffeine.cach
  * @since 3.0
  */
 public class CssParser implements LinkExtractorParser {
-    private static final URLCollection EMPTY_URL_COLLECTION = new URLCollection(Collections.emptyList());
+    private static final URLCollection EMPTY_URL_COLLECTION = new URLCollection(Collections.<URLString>emptyList());
     private static final Logger LOG = LoggingManager.getLoggerForClass();
 
     /**