Skip to content

Commit

Permalink
Make EmojiResultReceiver private. (#590)
Browse files Browse the repository at this point in the history
  • Loading branch information
vanniktech authored Apr 26, 2022
1 parent c6146d6 commit 0738c61
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import android.os.ResultReceiver;
import androidx.annotation.Nullable;

public final class EmojiResultReceiver extends ResultReceiver {
final class EmojiResultReceiver extends ResultReceiver {
@Nullable private Receiver receiver;

/**
Expand All @@ -44,7 +44,7 @@ void setReceiver(final Receiver receiver) {
}
}

public interface Receiver {
interface Receiver {
void onReceiveResult(int resultCode, Bundle data);
}
}

0 comments on commit 0738c61

Please sign in to comment.