Skip to content

Commit

Permalink
Remove unused argument in CassandraSession.execute
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr committed Jul 22, 2020
1 parent 961c99f commit e533c3a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,9 +426,9 @@ public List<CassandraPartition> getPartitions(CassandraTable table, List<Set<Obj
return partitions.build();
}

public ResultSet execute(String cql, Object... values)
public ResultSet execute(String cql)
{
return executeWithSession(session -> session.execute(cql, values));
return executeWithSession(session -> session.execute(cql));
}

public PreparedStatement prepare(RegularStatement statement)
Expand Down

0 comments on commit e533c3a

Please sign in to comment.