Commit 88295722 by kimvde Committed by kim-vde

Fix errors in Transformer demo

PiperOrigin-RevId: 393951084
parent 3183183d
......@@ -333,7 +333,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
/** Returns the {@link BufferInfo} associated with the current output buffer, if available. */
@Nullable
public BufferInfo getOutputBufferInfo() {
return maybeDequeueAndSetOutputBuffer() ? outputBufferInfo : null;
return maybeDequeueOutputBuffer() ? outputBufferInfo : null;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment