mplushnikov / lombok-intellij-plugin

Lombok Plugin for IntelliJ IDEA
Apache License 2.0
3.11k stars 635 forks source link

Intellij documentation tab fails to load info from constructor created with AllArgsConstructor #1175

Open charcoast opened 1 year ago

charcoast commented 1 year ago

Short description

The intellij documentation tab fails to load information from the constructor created with AllArgsConstructor, leaving only a blank screen. All args constructor

Despite this, the constructor appears in the list of possible constructors for the class: chat documentation

Expected behavior

It should show the attributes of the constructor, as in this case: documentation working

Version information

Steps to reproduce

What steps do we need to take to reproduce this issue?

  1. Create a class with some attributes
  2. Anotate the class with @AllArgsConstructor
  3. Press ctrl + q twice with the cursor between the parentheses when instantiating an object of the class.