Skip to content

Commit

Permalink
no need for javadoc on private methods
Browse files Browse the repository at this point in the history
  • Loading branch information
atermenji committed Jul 20, 2013
1 parent 9b4b581 commit b2a8782
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions app/src/main/java/com/github/mobile/util/AvatarLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,6 @@ public AvatarLoader(final Context context) {
options.inPreferredConfig = ARGB_8888;
}

/**
* Get image for user
*
* @param filename
* @return image
*/
private BitmapDrawable getImageBy(String filename) {
File avatarFile = new File(avatarDir, filename);

Expand All @@ -142,12 +136,6 @@ private BitmapDrawable getImageBy(String filename) {
}
}

/**
* Decode file to bitmap
*
* @param file
* @return bitmap
*/
private Bitmap decode(final File file) {
return BitmapFactory.decodeFile(file.getAbsolutePath(), options);
}
Expand Down

0 comments on commit b2a8782

Please sign in to comment.