You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2020/05/29 18:37:22 UTC

svn commit: r1878285 - /pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/streampane/Stream.java

Author: tilman
Date: Fri May 29 18:37:22 2020
New Revision: 1878285

URL: http://svn.apache.org/viewvc?rev=1878285&view=rev
Log:
PDFBOX-4071: SonarQube fix

Modified:
    pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/streampane/Stream.java

Modified: pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/streampane/Stream.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/streampane/Stream.java?rev=1878285&r1=1878284&r2=1878285&view=diff
==============================================================================
--- pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/streampane/Stream.java (original)
+++ pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/streampane/Stream.java Fri May 29 18:37:22 2020
@@ -97,7 +97,7 @@ public class Stream
      */
     public List<String> getFilterList()
     {
-        return new ArrayList(filters.keySet());
+        return new ArrayList<String>(filters.keySet());
     }
 
     /**