-
Type:
New Feature
-
Status: Closed
-
Priority:
Normal
-
Resolution: Done
-
Affects Version/s: 9.0.0
-
Fix Version/s: 9.5.0
-
Component/s: Databind 2
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 } }
- relates to
-
ZK-4698 It detects the parameter name too early in MVVM Params
-
- Closed
-