This is an automated email from the ASF dual-hosted git repository.

mklaehn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 2813d90  [NETBEANS-3458] Fixed compiler warnings concerning rawtypes 
Performer
2813d90 is described below

commit 2813d90b8d6cd138c151e885128d3c4c39f74b88
Author: Martin Klähn <mkla...@apache.org>
AuthorDate: Tue Nov 26 20:28:57 2019 +0100

    [NETBEANS-3458] Fixed compiler warnings concerning rawtypes Performer
---
 platform/openide.awt/src/org/openide/awt/ContextAction.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/platform/openide.awt/src/org/openide/awt/ContextAction.java 
b/platform/openide.awt/src/org/openide/awt/ContextAction.java
index 4a3bb4c..ff32d44 100644
--- a/platform/openide.awt/src/org/openide/awt/ContextAction.java
+++ b/platform/openide.awt/src/org/openide/awt/ContextAction.java
@@ -458,7 +458,7 @@ implements Action, ContextAwareAction, ChangeListener, 
Runnable {
                 return true;
             }
             if (obj instanceof Performer) {
-                Performer l = (Performer)obj;
+                Performer<?> l = (Performer<?>) obj;
                 return delegate.equals(l.delegate);
             }
             return false;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to