Skip to content

Commit

Permalink
Add TODOs for followup
Browse files Browse the repository at this point in the history
  • Loading branch information
niloc132 committed Sep 1, 2022
1 parent 5c92be0 commit afa01e0
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public void write(int i) throws IOException {

@Override
public void write(@NotNull byte[] b) throws IOException {
// TODO (deephaven#2793) switch to modern method overloads when jpy#87 is fixed
rawIoBaseSupplier.get().callMethod("write", new String(b));
}

Expand All @@ -36,11 +37,13 @@ public void write(@NotNull byte[] b, int off, int len) throws IOException {

@Override
public void flush() throws IOException {
// TODO (deephaven#2793) switch to modern method overloads when jpy#87 is fixed
rawIoBaseSupplier.get().callMethod("flush");
}

@Override
public void close() throws IOException {
// TODO (deephaven#2793) switch to modern method overloads when jpy#87 is fixed
rawIoBaseSupplier.get().callMethod("close");
}
}

0 comments on commit afa01e0

Please sign in to comment.