Skip to content
This repository has been archived by the owner on Feb 25, 2025. It is now read-only.

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahwilliams authored Apr 10, 2024
1 parent 0b06d42 commit 43f7067
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import android.media.ImageReader;
import android.os.Build;
import android.os.Handler;
import android.os.Looper;
import android.view.Surface;
import androidx.annotation.Keep;
import androidx.annotation.NonNull;
Expand All @@ -36,7 +37,6 @@
import java.util.List;
import java.util.Set;
import java.util.concurrent.atomic.AtomicLong;
import android.os.Looper;

/**
* Represents the rendering responsibilities of a {@code FlutterEngine}.
Expand Down Expand Up @@ -485,7 +485,8 @@ private class PerImageReader {

public PerImageReader(ImageReader reader) {
this.reader = reader;
reader.setOnImageAvailableListener(onImageAvailableListener, new Handler(Looper.getMainLooper()));
reader.setOnImageAvailableListener(
onImageAvailableListener, new Handler(Looper.getMainLooper()));
}

PerImage queueImage(Image image) {
Expand Down

0 comments on commit 43f7067

Please sign in to comment.