Skip to content

Commit 8fed534

Browse files
committed
refactor: changed done to finish
1 parent 8a1dc8e commit 8fed534

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/wandb/client/WandbRun.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static void main(String[] args) throws IOException, InterruptedException
4848
+ data.getRunId()
4949
);
5050

51-
run.done();
51+
run.finish();
5252
}
5353

5454
public static class Builder {
@@ -238,11 +238,11 @@ public void printRunInfo() {
238238
+ this.run.getRunId());
239239
}
240240

241-
public void done() {
242-
this.done(0);
241+
public void finish() {
242+
this.finish(0);
243243
}
244244

245-
public void done(int exitCode) {
245+
public void finish(int exitCode) {
246246
try {
247247
this.output.flush();
248248
this.output.resetOut();

0 commit comments

Comments
 (0)