Skip to content

Commit

Permalink
fixes type at inserqueryparser innerclass
Browse files Browse the repository at this point in the history
  • Loading branch information
otaviojava committed Apr 28, 2019
1 parent fb48bfb commit ed301a5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@ DocumentPreparedStatementAsync prepareAsync(String query, DocumentCollectionMana
}

private DocumentEntity getEntity(InsertQuery insertQuery, String collection, Params params, DocumentObserverParser observer) {
return getEntity(new InsertQueryConditioinSupplier(insertQuery), collection, params, observer);
return getEntity(new InsertQueryConditionSupplier(insertQuery), collection, params, observer);
}


private class InsertQueryConditioinSupplier implements ConditionQuerySupplier {
private class InsertQueryConditionSupplier implements ConditionQuerySupplier {
private final InsertQuery query;

private InsertQueryConditioinSupplier(InsertQuery query) {
private InsertQueryConditionSupplier(InsertQuery query) {
this.query = query;
}

Expand Down

0 comments on commit ed301a5

Please sign in to comment.