You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/08/29 10:47:56 UTC

[GitHub] [netbeans] dbalek opened a new pull request, #4561: OrganizeImports fixed for clashing star imports.

dbalek opened a new pull request, #4561:
URL: https://github.com/apache/netbeans/pull/4561

   Running `Organize Imports` action on the following source code removes the necessary import for `java.util.List`
   ```
   package javaapplication;
   
   import java.awt.*;
   import java.util.List;
   import java.util.*;
   
   public class JavaApplication {
   
       public static void main(String[] args) {
           List a;
           Map m;
           AWTEvent e;
       }
   }
   ```
   This PR should fix this problem.
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


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

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


[GitHub] [netbeans] dbalek merged pull request #4561: OrganizeImports fixed for clashing star imports.

Posted by GitBox <gi...@apache.org>.
dbalek merged PR #4561:
URL: https://github.com/apache/netbeans/pull/4561


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


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

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