-
Notifications
You must be signed in to change notification settings - Fork 88
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Problem statement
See org.openrewrite.staticanalysis.UnnecessaryExplicitTypeArgumentsTest#withinLambda
.
Lines 77 to 107 in 0a470e4
rewriteRun( | |
//language=java | |
java( | |
""" | |
import java.util.function.Function; | |
class Test { | |
Function<Object, Object> f = (d1) -> { | |
return this.<Object>test(); | |
}; | |
<T> T test() { | |
return this.test(); | |
} | |
} | |
""", | |
""" | |
import java.util.function.Function; | |
class Test { | |
Function<Object, Object> f = (d1) -> { | |
return this.test(); | |
}; | |
<T> T test() { | |
return this.test(); | |
} | |
} | |
""" | |
) | |
); |
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
No status