Skip to content

Commit

Permalink
#10 - made preparedcall constructor public
Browse files Browse the repository at this point in the history
  • Loading branch information
schadr committed Jun 19, 2012
1 parent 1bce406 commit 7f1b1a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db/util/PreparedCallExecutionItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class PreparedCallExecutionItem extends AExecutionItem {
private ISetter[] params;
private boolean wasExecuted = false;

PreparedCallExecutionItem(String query, ISetter[] params) {
public PreparedCallExecutionItem(String query, ISetter[] params) {
this.query = query;
this.params = params;
}
Expand Down

0 comments on commit 7f1b1a8

Please sign in to comment.