You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by fm...@apache.org on 2017/11/12 20:49:26 UTC

svn commit: r1815044 - /chemistry/opencmis/trunk/chemistry-opencmis-workbench/chemistry-opencmis-workbench/src/main/java/org/apache/chemistry/opencmis/workbench/ClientFrame.java

Author: fmui
Date: Sun Nov 12 20:49:26 2017
New Revision: 1815044

URL: http://svn.apache.org/viewvc?rev=1815044&view=rev
Log:
Workbench: fixed setIconImage (Java 9)

Modified:
    chemistry/opencmis/trunk/chemistry-opencmis-workbench/chemistry-opencmis-workbench/src/main/java/org/apache/chemistry/opencmis/workbench/ClientFrame.java

Modified: chemistry/opencmis/trunk/chemistry-opencmis-workbench/chemistry-opencmis-workbench/src/main/java/org/apache/chemistry/opencmis/workbench/ClientFrame.java
URL: http://svn.apache.org/viewvc/chemistry/opencmis/trunk/chemistry-opencmis-workbench/chemistry-opencmis-workbench/src/main/java/org/apache/chemistry/opencmis/workbench/ClientFrame.java?rev=1815044&r1=1815043&r2=1815044&view=diff
==============================================================================
--- chemistry/opencmis/trunk/chemistry-opencmis-workbench/chemistry-opencmis-workbench/src/main/java/org/apache/chemistry/opencmis/workbench/ClientFrame.java (original)
+++ chemistry/opencmis/trunk/chemistry-opencmis-workbench/chemistry-opencmis-workbench/src/main/java/org/apache/chemistry/opencmis/workbench/ClientFrame.java Sun Nov 12 20:49:26 2017
@@ -133,7 +133,7 @@ public class ClientFrame extends JFrame
 
             if (icon != null) {
                 try {
-                    taskbarClass.getMethod("setIconImage​", Image.class).invoke(taskbar, icon.getImage());
+                    taskbarClass.getMethod("setIconImage", Image.class).invoke(taskbar, icon.getImage());
                     isDockImageSet = true;
                 } catch (Exception e) {
                     LOG.debug("Could not set taskbar icon!", e);