Skip to content

Commit 841b443

Browse files
committed
Fix google-java-format lint
This commit was authored with the help of Claude.
1 parent 0f67b86 commit 841b443

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • extension/android/executorch_android/src/main/java/org/pytorch/executorch/extension/llm

extension/android/executorch_android/src/main/java/org/pytorch/executorch/extension/llm/LlmModule.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,7 @@ public void prefillNormalizedImage(ByteBuffer image, int width, int height, int
613613
}
614614
// slice() so that getDirectBufferAddress on the native side returns a pointer
615615
// starting at the current position, not the base address.
616-
int nativeResult =
617-
prefillNormalizedImagesInputBuffer(image.slice(), width, height, channels);
616+
int nativeResult = prefillNormalizedImagesInputBuffer(image.slice(), width, height, channels);
618617
if (nativeResult != 0) {
619618
throw ExecutorchRuntimeException.makeExecutorchException(nativeResult, "Prefill failed");
620619
}

0 commit comments

Comments
 (0)