You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jmeter.apache.org by Felix Schumacher <fe...@internetallee.de> on 2014/11/23 15:01:23 UTC

Re: svn commit: r1641179 - /jmeter/trunk/src/components/org/apache/jmeter/assertions/gui/HTMLAssertionGui.java


Am 23. November 2014 14:32:30 MEZ, schrieb pmouawad@apache.org:
>Author: pmouawad
>Date: Sun Nov 23 13:32:30 2014
>New Revision: 1641179
>
>URL: http://svn.apache.org/r1641179
>Log:
>Remove Generic JComboBox use as we are on JAVA6
Oops.

Sorry
 Felix
>
>Modified:
>jmeter/trunk/src/components/org/apache/jmeter/assertions/gui/HTMLAssertionGui.java
>
>Modified:
>jmeter/trunk/src/components/org/apache/jmeter/assertions/gui/HTMLAssertionGui.java
>URL:
>http://svn.apache.org/viewvc/jmeter/trunk/src/components/org/apache/jmeter/assertions/gui/HTMLAssertionGui.java?rev=1641179&r1=1641178&r2=1641179&view=diff
>==============================================================================
>---
>jmeter/trunk/src/components/org/apache/jmeter/assertions/gui/HTMLAssertionGui.java
>(original)
>+++
>jmeter/trunk/src/components/org/apache/jmeter/assertions/gui/HTMLAssertionGui.java
>Sun Nov 23 13:32:30 2014
>@@ -65,7 +65,7 @@ public class HTMLAssertionGui extends Ab
> 
>     private JCheckBox errorsOnly = null;
> 
>-    private JComboBox<String> docTypeBox = null;
>+    private JComboBox docTypeBox = null;
> 
>     private JRadioButton htmlRadioButton = null;
> 
>@@ -213,7 +213,7 @@ public class HTMLAssertionGui extends Ab
> 
>         // doctype
>         HorizontalPanel docTypePanel = new HorizontalPanel();
>-        docTypeBox = new JComboBox<String>(new String[] { "omit",
>"auto", "strict", "loose" });
>+        docTypeBox = new JComboBox(new String[] { "omit", "auto",
>"strict", "loose" });
>         // docTypePanel.add(new
>// JLabel(JMeterUtils.getResString("duration_assertion_label")));
>//$NON-NLS-1$
>         docTypePanel.add(new JLabel("Doctype:"));