Skip to content

Commit

Permalink
removed abstrast declaration from methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayur Kaul committed Dec 6, 2017
1 parent 61938da commit 5bf28ef
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
*/

public interface MediaDataContext {
public abstract ThreadPool getThreadPool();
public abstract DataManager getDataManager();
public abstract FaceDetector getFaceDetector();
public abstract ImageCacheService getImageCacheService();
public abstract Looper getMainLooper();
public abstract ContentResolver getContentResolver();
public abstract Context getContext();
ThreadPool getThreadPool();
DataManager getDataManager();
FaceDetector getFaceDetector();
ImageCacheService getImageCacheService();
Looper getMainLooper();
ContentResolver getContentResolver();
Context getContext();
}

0 comments on commit 5bf28ef

Please sign in to comment.