Skip to content

Commit

Permalink
Remove deprecated ComponentCallbacks methods in RequestManager
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=187624368
  • Loading branch information
sjudd committed Mar 6, 2018

Verified

This commit was signed with the committer’s verified signature. The key has expired.
MylesBorins Myles Borins
1 parent 7fecca9 commit 1937b05
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions library/src/main/java/com/bumptech/glide/RequestManager.java
Original file line number Diff line number Diff line change
@@ -172,28 +172,6 @@ public RequestManager setDefaultRequestOptions(@NonNull RequestOptions requestOp
return this;
}

/**
* @see android.content.ComponentCallbacks2#onTrimMemory(int)
*
* @deprecated This method is called automatically by Glide's internals and shouldn't be called
* externally.
*/
@Deprecated
public void onTrimMemory(int level) {
glide.onTrimMemory(level);
}

/**
* @see android.content.ComponentCallbacks2#onLowMemory()
*
* @deprecated This method is called automatically by Glide's internals and shouldn't be called
* externally.
*/
@Deprecated
public void onLowMemory() {
glide.onLowMemory();
}

/**
* Returns true if loads for this {@link RequestManager} are currently paused.
*

0 comments on commit 1937b05

Please sign in to comment.