Skip to content

Commit

Permalink
MONDRIAN: Fix - instance method called as a static
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 4057]
  • Loading branch information
Sherman Wood committed Sep 8, 2005
1 parent 8a4841d commit 9dec666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/mondrian/olap/fun/AbstractAggregateFunDef.java
Expand Up @@ -46,7 +46,7 @@ protected Exp validateArg(
return super.validateArg(validator, call, i, type);
}

final Exp valueFunCall = BuiltinFunTable.createValueFunCall();
final Exp valueFunCall = BuiltinFunTable.instance().createValueFunCall();
}

// End AbstractAggregateFunDef.java

0 comments on commit 9dec666

Please sign in to comment.