You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Operating System:
Mac OS Darwin bogon 17.5.0 Darwin Kernel Version 17.5.0
JDK version:
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
vscode-java doesn't provide a menu to generate toString() methods. This must come from another extension.
As for actually providing toString() and other methods generation, see #597.
[provide a description of the issue]
Environment
Mac OS Darwin bogon 17.5.0 Darwin Kernel Version 17.5.0
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
version 1.28
Steps To Reproduce
Current Result
the method generated like this:
@OverRide
public String toString() {
return "{" +
" ='" + get() + "'" +
", ='" + get() + "'" +
", @mbg.generated='" + [email protected]() + "'" +
", entityId='" + getEntityId() + "'" +
"}";
}
Expected Result
@OverRide
public String toString() {
return "{" +
" entityId='" + getEntityId() + "'" +
"}";
}
Additional Informations
could it skip the docs comment?
The text was updated successfully, but these errors were encountered: