[java-intentions] Remove 'Add constructor parameter' fix for record fields (IDEA-248139)

As record instance field declaration is illegal, this action is useless anyway and only adds confusion

GitOrigin-RevId: 4a1862f66c5a175fef675705e6af53ef5bae1f78
This commit is contained in:
Tagir Valeev
2020-08-24 12:08:39 +00:00
committed by intellij-monorepo-bot
parent 0b6a5cb65c
commit 93479e1f99
3 changed files with 14 additions and 0 deletions
@@ -0,0 +1,4 @@
// "Add constructor parameter" "false"
record R(int a, int b) {
private String <caret>str;
}