[lombok] IDEA-305806 IDEA-301687 applied review suggestions

GitOrigin-RevId: 5520e9ef9931ce0e9932dc4f0d1e5c2f81b2fe24
This commit is contained in:
Michail Plushnikov
2023-01-27 13:45:29 +00:00
committed by intellij-monorepo-bot
parent 26df47c350
commit 4dd7c15259
7 changed files with 61 additions and 73 deletions
@@ -62,7 +62,7 @@ public final class PropertyGroup implements Group, ColoredItemPresentation, Acce
if (null != accessorInfo &&
(accessorInfo.isKindOf(PropertyKind.GETTER) || accessorInfo.isKindOf(PropertyKind.SETTER))) {
PropertyGroup group = new PropertyGroup(accessorInfo.getPropertyName(), accessorInfo.getPropertyType(),
PropertyGroup group = new PropertyGroup(accessorInfo.propertyName(), accessorInfo.propertyType(),
method.hasModifierProperty(PsiModifier.STATIC), method.getProject());
if (accessorInfo.isKindOf(PropertyKind.GETTER)) {
group.setGetter(method);