-
New Feature
-
Resolution: Done
-
Normal
-
9.0.0
Steps to Reproduce
public MyVM { @Command public void handle(@BindingParam("format") String format, @BindingParam("price") double price, @BindingParam("id") int id) { // omitted } }
Current Result
Even both variable name and the parameter name are the same, we can't omit it.
Expected Result
public MyVM { @Command public void handle(@BindingParam String format, @BindingParam double price, @BindingParam int id) { // omitted } }