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

lkishalmi 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 7e3986e  [NETBEANS-3463] Fixed compiler warnings concerning rawtypes 
ObservableActionListener
7e3986e is described below

commit 7e3986e30754573c0d8f1dc24b08a55556933211
Author: Martin Klähn <[email protected]>
AuthorDate: Tue Nov 26 22:45:28 2019 +0100

    [NETBEANS-3463] Fixed compiler warnings concerning rawtypes 
ObservableActionListener
---
 .../org/netbeans/modules/nativeexecution/support/ObservableAction.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/ide/dlight.nativeexecution/src/org/netbeans/modules/nativeexecution/support/ObservableAction.java
 
b/ide/dlight.nativeexecution/src/org/netbeans/modules/nativeexecution/support/ObservableAction.java
index 795ddea..52d82b4 100644
--- 
a/ide/dlight.nativeexecution/src/org/netbeans/modules/nativeexecution/support/ObservableAction.java
+++ 
b/ide/dlight.nativeexecution/src/org/netbeans/modules/nativeexecution/support/ObservableAction.java
@@ -147,7 +147,7 @@ public abstract class ObservableAction<T>
         List<ObservableActionListener<T>> ll =
                 new ArrayList<>(listeners);
 
-        for (ObservableActionListener l : ll) {
+        for (ObservableActionListener<T> l : ll) {
             l.actionStarted(this);
         }
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

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

Reply via email to