Skip to content
This repository has been archived by the owner on Jan 31, 2018. It is now read-only.

Commit

Permalink
Fixed the "acceptChanges" method
Browse files Browse the repository at this point in the history
  • Loading branch information
Syst3ms authored Jan 2, 2017
1 parent bbaedbe commit 36c9fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fr/syst3ms/quarsk/expressions/SExprReference.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public Class getReturnType() {
}

public Class<?>[] acceptChange(Changer.ChangeMode changeMode) {
return refProp.expr.acceptChange(changeMode);
return CollectionUtils.array(Object.class);
}

public void change(Event e, Object[] o, Changer.ChangeMode changeMode) {
Expand Down

0 comments on commit 36c9fed

Please sign in to comment.