IntelliJ doesn't detect @AllArgsConstructor

已回答
@AllArgsConstructor
public class A {

@Getter
private final String B;

@Getter
private final String C;

}

IntelliJ gives red underlined error "Variable B might not have been initialized".
1

请先登录再写评论。