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

matthiasblaesing 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 065509b  Fix missing type information from commit 731f8d9 causing 
compiler error
065509b is described below

commit 065509bdb281303cc963ffd4df0008c4c43ffe5c
Author: Matthias Bläsing <[email protected]>
AuthorDate: Thu Nov 21 22:44:46 2019 +0100

    Fix missing type information from commit 731f8d9 causing compiler error
---
 .../src/org/netbeans/modules/profiler/oql/engine/api/impl/Snapshot.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/profiler/profiler.oql/src/org/netbeans/modules/profiler/oql/engine/api/impl/Snapshot.java
 
b/profiler/profiler.oql/src/org/netbeans/modules/profiler/oql/engine/api/impl/Snapshot.java
index 6e28144..8b38532 100644
--- 
a/profiler/profiler.oql/src/org/netbeans/modules/profiler/oql/engine/api/impl/Snapshot.java
+++ 
b/profiler/profiler.oql/src/org/netbeans/modules/profiler/oql/engine/api/impl/Snapshot.java
@@ -199,7 +199,7 @@ public class Snapshot {
 
             @Override
             protected Iterator<JavaClass> getTraversingIterator(JavaClass 
popped) {
-                return includeSubclasses ? popped.getSubClasses().iterator() : 
Collections.emptyList().iterator();
+                return includeSubclasses ? popped.getSubClasses().iterator() : 
Collections.<JavaClass>emptyList().iterator();
             }
         };
     }


---------------------------------------------------------------------
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