[java-intentions] IDEA-365126 'BindFieldsFromParameters' shouldn't be offered when method has generic parameters

GitOrigin-RevId: 92052cdd9f27b6a43fc949badc88d4e8d1695c65
This commit is contained in:
Mikhail Pyltsin
2024-12-23 18:12:33 +00:00
committed by intellij-monorepo-bot
parent af2186f674
commit 0107304a90
2 changed files with 9 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Bind constructor parameters to fields" "false"
class Bar {
<T> void get<caret>(Class<T> a) {
}
}