Skip to content

Commit d9b448a

Browse files
0xZOnesealesj
authored andcommitted
[Android] Minor refactor: Remove redundant methods. (flutter#50647)
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
1 parent 6b64b25 commit d9b448a

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

shell/platform/android/io/flutter/view/TextureRegistry.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,6 @@ interface TextureEntry {
6969
/** Uses a Surface to populate the texture. */
7070
@Keep
7171
interface SurfaceProducer extends TextureEntry {
72-
/** @return The identity of this texture. */
73-
long id();
74-
75-
/** Deregisters and releases all resources . */
76-
void release();
77-
7872
/** Specify the size of this texture in physical pixels */
7973
void setSize(int width, int height);
8074

@@ -101,12 +95,6 @@ interface SurfaceProducer extends TextureEntry {
10195
/** A registry entry for a managed SurfaceTexture. */
10296
@Keep
10397
interface SurfaceTextureEntry extends TextureEntry {
104-
/** @return The identity of this texture. */
105-
long id();
106-
107-
/** Deregisters and releases all resources . */
108-
void release();
109-
11098
/** @return The managed SurfaceTexture. */
11199
@NonNull
112100
SurfaceTexture surfaceTexture();
@@ -120,12 +108,6 @@ default void setOnTrimMemoryListener(@Nullable OnTrimMemoryListener listener) {}
120108

121109
@Keep
122110
interface ImageTextureEntry extends TextureEntry {
123-
/** @return the identity of this ImageTextureEntry */
124-
long id();
125-
126-
/** Deregisters and releases all resources. */
127-
void release();
128-
129111
/**
130112
* Next paint will update texture to use the contents of image.
131113
*

0 commit comments

Comments
 (0)