Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Remove unused experimental annotation
Browse files Browse the repository at this point in the history
Summary: Removed `UseExperimental` annotation from `execute` method. This is a remain from an early implementation of `execute` and has moved to `ImageProxyImage.java` since.

Reviewed By: clarksandholtz, ap190

Differential Revision: D33501768

fbshipit-source-id: 42d7f891a030486a4e5a1dfe3fb4844893500909
  • Loading branch information
raedle authored and clarksandholtz committed Jan 19, 2022
1 parent 239070f commit bee9aec
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import android.util.Log;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.experimental.UseExperimental;
import com.facebook.react.bridge.Arguments;
import com.facebook.react.bridge.Promise;
import com.facebook.react.bridge.ReactApplicationContext;
Expand Down Expand Up @@ -94,7 +93,6 @@ public void unload(Promise promise) {
}

@ReactMethod
@UseExperimental(markerClass = androidx.camera.core.ExperimentalGetImage.class)
public void execute(final String modelUri, final ReadableMap params, final Promise promise) {
executorService.execute(
() -> {
Expand Down

0 comments on commit bee9aec

Please sign in to comment.