Skip to content

Commit

Permalink
Remove DiagramBase#getVar
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapster committed May 3, 2024
1 parent e0e790b commit 315e667
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public abstract class DiagramBase extends UIData implements Widget, ClientBehavi
public enum PropertyKeys {

widgetVar,
var,
style,
styleClass
}
Expand All @@ -60,14 +59,6 @@ public void setWidgetVar(String widgetVar) {
getStateHelper().put(PropertyKeys.widgetVar, widgetVar);
}

public String getVar() {
return (String) getStateHelper().eval(PropertyKeys.var, null);
}

public void setVar(String var) {
getStateHelper().put(PropertyKeys.var, var);
}

public String getStyle() {
return (String) getStateHelper().eval(PropertyKeys.style, null);
}
Expand Down

0 comments on commit 315e667

Please sign in to comment.