[ 
https://issues.apache.org/jira/browse/NETBEANS-345?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated NETBEANS-345:
------------------------------------
    Labels: pull-request-available  (was: )

> "Move Inner to Outer Level" refactoring adds erroneous "<captured wildcard>" 
> to the new outer class' source
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: NETBEANS-345
>                 URL: https://issues.apache.org/jira/browse/NETBEANS-345
>             Project: NetBeans
>          Issue Type: Bug
>          Components: java - Refactoring
>    Affects Versions: Next
>            Reporter: Daniel Trebbien
>            Priority: Major
>              Labels: pull-request-available
>
> Steps to reproduce:
>  # Open the following source file:
>     {code:java}
> package bugs;
> import java.util.List;
> import java.util.concurrent.RunnableFuture;
> public class MoveInnerToOuterTest {
>     public static class Inner {
>         public Inner(List<? extends Runnable> runnables) {
>             assert runnables.stream()
>                     .noneMatch((r) -> r instanceof RunnableFuture);
>         }
>     }
> }
> {code}
>  # Right click on {{class Inner}} and select *Refactor > Move Inner to Outer 
> Level…*
>  # Click the "Refactor" button on the dialog.
> The newly-generated {{Inner.java}} has the following contents:
> {code:java}
> package bugs;
> import java.util.List;
> import java.util.concurrent.RunnableFuture;
> public class Inner {
>     
>     public Inner(List<? extends Runnable> runnables) {
>         assert runnables.stream().noneMatch((<captured wildcard> r) -> r 
> instanceof RunnableFuture);
>     }
> }
> {code}
> Notice the invalid "<captured wildcard>".



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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