Open
Description
Hi.
I've got jsut update vscode-java 1.41.1 to 1.42.0
before update, it's okay,
import io.tienipia.model.Template;
import java.util.List;
import lombok.Builder;
@Builder
record TemplateResponse(List<Template> templates) {}
but after upgrade to 1.42.0
The constructor TemplateResponse() is undefinedJava(134217858)
It occurs every vscode with 1.42.0
of course, manual build with maven works fine.
mvn clean compile