Skip to content

Commit

Permalink
fix compile error (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
kerko authored and sschmittBt committed Jul 24, 2017
1 parent fe2eb8e commit 2d18736
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private void handleUpdate(final SqlStoreObject<T> storeObject,
}
getQuery().buildQueryExpression(null, res -> {
if (res.succeeded()) {
seq.combineWhereExpressions(((SqlExpression) res.result()));
seq.combineWhereClauses(((SqlExpression) res.result()));
update(storeObject, resultHandler, seq);
} else {
resultHandler.handle(Future.failedFuture(res.cause()));
Expand Down

0 comments on commit 2d18736

Please sign in to comment.