Skip to content

Commit

Permalink
Making non-essential methods in BackgroundThreadPoster protected
Browse files Browse the repository at this point in the history
  • Loading branch information
techyourchance committed Aug 18, 2018
1 parent cc88890 commit 87eaf5e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public final void post(Runnable runnable) {
* In general, this method shouldn't be used and is provided only for the purpose of
* integration with existing libraries and frameworks.
*/
public final ThreadPoolExecutor getThreadPoolExecutor() {
protected final ThreadPoolExecutor getThreadPoolExecutor() {
return mThreadPoolExecutor;
}

Expand All @@ -35,7 +35,7 @@ public final ThreadPoolExecutor getThreadPoolExecutor() {
* In general, this method shouldn't be used and is provided only for the purpose of
* integration with existing libraries and frameworks.
*/
public final ThreadFactory getThreadFactory() {
protected final ThreadFactory getThreadFactory() {
return getThreadPoolExecutor().getThreadFactory();
}

Expand Down

0 comments on commit 87eaf5e

Please sign in to comment.