Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
merged changes from IntelliJ-Master
Browse files Browse the repository at this point in the history
  • Loading branch information
mplushnikov committed Jan 2, 2021
1 parent 79b415f commit 87abf42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ public class LombokLightParameter extends LightParameter implements SyntheticEle
private final LombokLightIdentifier myNameIdentifier;

public LombokLightParameter(@NotNull String name, @NotNull PsiType type, PsiElement declarationScope, Language language) {
super(name, type, declarationScope, language, new LombokLightModifierList(declarationScope.getManager(), language));
super(name, type, declarationScope, language);
myNameIdentifier = new LombokLightIdentifier(declarationScope.getManager(), name);
setModifierList(new LombokLightModifierList(declarationScope.getManager(), language));
}

@NotNull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void testFindUsageSingularBuilder() {
}

public void testFieldUsages() {
myFixture.configureByFile(getTestName(false) + ".java");
myFixture.configureByFile(getBasePath() + getTestName(false) + ".java");
PsiClass aClass = myFixture.findClass("Apple");
JavaClassFindUsagesOptions options = new JavaClassFindUsagesOptions(getProject());
options.isFieldsUsages=true;
Expand Down

0 comments on commit 87abf42

Please sign in to comment.