Skip to content

Commit a648352

Browse files
authored
Update README.md
1 parent 8190b0c commit a648352

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ public class Script implements BaseScript {
2929
/**
3030
* This code receives a data.x and data.y and returns data.z = data.x + data.y
3131
*/
32-
public void execute(Map<String, Object> data, Map<String, Object> config, Map<String, Object> output) {
33-
//Map<String, Object> data = Spark.data();
32+
public void execute(Map<String, Object> data, Map<String, Object> config, Map<String, Object> output, ApiClient api) {
3433
Double x = (Double) data.get("x");
3534
Double y = (Double) data.get("y");
3635
Double z = x + y;

0 commit comments

Comments
 (0)