mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
Otherwise, it's hard to make it compatible with new-style unused inspection (IDEA-349083) Also: remove empty line in constructor body automatically GitOrigin-RevId: ab1cd08352d9f0168b86acc1d4b87cb89cfe7d69
19 lines
441 B
Java
19 lines
441 B
Java
// "Create field for parameter 'test'" "true-preview"
|
|
|
|
package codeInsight.createFieldFromParameterAction.test1;
|
|
|
|
import java.util.HashMap;
|
|
|
|
public class TestBefore {
|
|
private String myName;
|
|
private final HashMap <caret>myTest;
|
|
private String myPerson;
|
|
|
|
public TestBefore(String name, int length, HashMap test, String person) {
|
|
super();
|
|
myName = name;
|
|
myTest = test;
|
|
myPerson = person;
|
|
}
|
|
}
|