diff --git a/Integrations/src/main/java/io/deephaven/integrations/python/PyLogOutputStream.java b/Integrations/src/main/java/io/deephaven/integrations/python/PyLogOutputStream.java index dd34ad5869c..e8fee6b10ab 100644 --- a/Integrations/src/main/java/io/deephaven/integrations/python/PyLogOutputStream.java +++ b/Integrations/src/main/java/io/deephaven/integrations/python/PyLogOutputStream.java @@ -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)); } @@ -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"); } }