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 2012/09/03 00:55:00 UTC

svn commit: r1380087 - /jmeter/trunk/src/core/org/apache/jmeter/gui/util/FilePanelEntry.java

Author: sebb
Date: Sun Sep  2 22:54:59 2012
New Revision: 1380087

URL: http://svn.apache.org/viewvc?rev=1380087&view=rev
Log:
Allow serialisation test to work

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/gui/util/FilePanelEntry.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/util/FilePanelEntry.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/util/FilePanelEntry.java?rev=1380087&r1=1380086&r2=1380087&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/util/FilePanelEntry.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/util/FilePanelEntry.java Sun Sep  2 22:54:59 2012
@@ -48,6 +48,11 @@ public class FilePanelEntry extends Hori
 
     private final String[] filetypes;
 
+    // Mainly needed for unit test Serialisable tests
+    public FilePanelEntry() {
+        this(JMeterUtils.getResString("file_visualizer_filename")); //$NON-NLS-1$
+    }
+
     public FilePanelEntry(String label) {
         this(label, (ChangeListener) null);
     }