changeset 995:af2c7b195ed8

Remove slipped in Java 7 language construct and API call 2014-06-26 Jacob Wisor <gitne@gmx.de> * netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java: (sortBy) Remove slipped in Java 7 language construct
author Jacob Wisor <gitne@gmx.de>
date Thu, 26 Jun 2014 18:13:30 +0200
parents 93a3b303c280
children 3a86eb3b6e0f
files ChangeLog netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Jun 26 17:52:52 2014 +0200
+++ b/ChangeLog	Thu Jun 26 18:13:30 2014 +0200
@@ -1,3 +1,8 @@
+2014-06-26  Jacob Wisor  <gitne@gmx.de>
+
+	* netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java:
+	(sortBy) Remove slipped in Java 7 language construct and API call
+
 2014-06-26  Jacob Wisor  <gitne@gmx.de>
 
 	* netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java: Formatting
--- a/netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java	Thu Jun 26 17:52:52 2014 +0200
+++ b/netx/net/sourceforge/jnlp/util/logging/ConsoleOutputPane.java	Thu Jun 26 18:13:30 2014 +0200
@@ -102,7 +102,7 @@
         showPreInit = new JCheckBox();
         sortByLabel = new JLabel();
         regExLabel = new JCheckBox();
-        sortBy = new JComboBox<>();
+        sortBy = new JComboBox();
         searchLabel = new JLabel();
         autorefresh = new JCheckBox();
         refresh = new JButton();
@@ -958,7 +958,7 @@
     private final JCheckBox showThread2;
     private final JCheckBox showUser;
     private final JCheckBox sortCopyAll;
-    private final JComboBox<String> sortBy;
+    private final JComboBox sortBy;
     private final JLabel sortByLabel;
     private final JLabel statistics;
     private final JCheckBox wordWrap;