Skip to content

Commit 983b9f3

Browse files
committed
Refactor code
1 parent 71da3f0 commit 983b9f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/redislabs/redisgraph/impl/api/RedisGraphTransaction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public ResultSet build(Object o) {
9696
* @return response with result set with the procedure data
9797
*/
9898
public Response<ResultSet> callProcedure(String graphId, String procedure){
99-
return callProcedure(graphId, procedure, Utils.DUMMY_LIST, Utils.DUMMY_MAP);
99+
return callProcedure(graphId, procedure, Utils.DUMMY_LIST);
100100
}
101101

102102
/**
@@ -106,7 +106,7 @@ public Response<ResultSet> callProcedure(String graphId, String procedure){
106106
* @param args procedure arguments
107107
* @return response with result set with the procedure data
108108
*/
109-
public Response<ResultSet> callProcedure(String graphId, String procedure, List<String> args ){
109+
public Response<ResultSet> callProcedure(String graphId, String procedure, List<String> args){
110110
return callProcedure(graphId, procedure, args, Utils.DUMMY_MAP);
111111
}
112112

0 commit comments

Comments
 (0)