Skip to content

Commit

Permalink
[Android] Minor refactor: Remove redundant methods. (#50647)
Browse files Browse the repository at this point in the history
This is a minor refactoring with no semantic changes.

## Pre-launch Checklist

- [x] I read the [Contributor Guide] and followed the process outlined
there for submitting PRs.
- [x] I read the [Tree Hygiene] wiki page, which explains my
responsibilities.
- [x] I read and followed the [Flutter Style Guide] and the [C++,
Objective-C, Java style guides].
- [ ] I listed at least one issue that this PR fixes in the description
above.
- [ ] I added new tests to check the change I am making or feature I am
adding, or the PR is [test-exempt]. See [testing the engine] for
instructions on writing and running engine tests.
- [ ] I updated/added relevant documentation (doc comments with `///`).
- [x] I signed the [CLA].
- [x] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-new channel
on [Discord].

<!-- Links -->
[Contributor Guide]:
https://github.com/flutter/flutter/wiki/Tree-hygiene#overview
[Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene
[test-exempt]:
https://github.com/flutter/flutter/wiki/Tree-hygiene#tests
[Flutter Style Guide]:
https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
[C++, Objective-C, Java style guides]:
https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
[testing the engine]:
https://github.com/flutter/flutter/wiki/Testing-the-engine
[CLA]: https://cla.developers.google.com/
[flutter/tests]: https://github.com/flutter/tests
[breaking change policy]:
https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes
[Discord]: https://github.com/flutter/flutter/wiki/Chat
  • Loading branch information
0xZOne authored Feb 15, 2024
1 parent 7f3b96a commit bc4dd53
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions shell/platform/android/io/flutter/view/TextureRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@ interface TextureEntry {
/** Uses a Surface to populate the texture. */
@Keep
interface SurfaceProducer extends TextureEntry {
/** @return The identity of this texture. */
long id();

/** Deregisters and releases all resources . */
void release();

/** Specify the size of this texture in physical pixels */
void setSize(int width, int height);

Expand All @@ -101,12 +95,6 @@ interface SurfaceProducer extends TextureEntry {
/** A registry entry for a managed SurfaceTexture. */
@Keep
interface SurfaceTextureEntry extends TextureEntry {
/** @return The identity of this texture. */
long id();

/** Deregisters and releases all resources . */
void release();

/** @return The managed SurfaceTexture. */
@NonNull
SurfaceTexture surfaceTexture();
Expand All @@ -120,12 +108,6 @@ default void setOnTrimMemoryListener(@Nullable OnTrimMemoryListener listener) {}

@Keep
interface ImageTextureEntry extends TextureEntry {
/** @return the identity of this ImageTextureEntry */
long id();

/** Deregisters and releases all resources. */
void release();

/**
* Next paint will update texture to use the contents of image.
*
Expand Down

0 comments on commit bc4dd53

Please sign in to comment.