You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by lk...@apache.org on 2019/12/05 03:23:45 UTC

[netbeans] branch master updated: [NETBEANS-3504] Fixed compiler warnings concerning rawtypes IssueNode.SeenProperty

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 72a7f19  [NETBEANS-3504] Fixed compiler warnings concerning rawtypes IssueNode.SeenProperty
72a7f19 is described below

commit 72a7f19df732279b24b710dad87796bd2d7de807
Author: Martin Klähn <mk...@apache.org>
AuthorDate: Sat Nov 30 22:12:02 2019 +0100

    [NETBEANS-3504] Fixed compiler warnings concerning rawtypes IssueNode.SeenProperty
---
 .../netbeans/modules/bugtracking/issuetable/QueryTableCellRenderer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ide/bugtracking.commons/src/org/netbeans/modules/bugtracking/issuetable/QueryTableCellRenderer.java b/ide/bugtracking.commons/src/org/netbeans/modules/bugtracking/issuetable/QueryTableCellRenderer.java
index 5b60f12..a132c5e 100644
--- a/ide/bugtracking.commons/src/org/netbeans/modules/bugtracking/issuetable/QueryTableCellRenderer.java
+++ b/ide/bugtracking.commons/src/org/netbeans/modules/bugtracking/issuetable/QueryTableCellRenderer.java
@@ -122,7 +122,7 @@ public class QueryTableCellRenderer extends DefaultTableCellRenderer {
         
         TableCellStyle style = null;
         if(value instanceof IssueNode.SeenProperty) {
-            IssueNode.SeenProperty ps = (IssueNode.SeenProperty) value;
+            IssueNode<?>.SeenProperty ps = (IssueNode<?>.SeenProperty) value;
             renderer.setIcon(!ps.getValue() ? seenValueIcon : null);
             renderer.setText("");                                               // NOI18N
         } 


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

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