AvatarImage: Remove unused constructor

Change-Id: Ic8e2888c7bee06dbadc5649dab3f3425ddb30d1f
This commit is contained in:
David Pursehouse
2016-05-09 21:47:57 +09:00
committed by Hugo Arès
parent 7b073754d1
commit 4caa536865

View File

@@ -39,18 +39,6 @@ public class AvatarImage extends Image implements LoadHandler {
this(account, AccountInfo.AvatarInfo.DEFAULT_SIZE, true);
}
/**
* An avatar image for the given account using the requested size.
*
* @param account The account in which we are interested
* @param size A requested size. Note that the size can be ignored depending
* on the avatar provider. A size <= 0 indicates to let the provider
* decide a default size.
*/
public AvatarImage(AccountInfo account, int size) {
this(account, size, true);
}
/**
* An avatar image for the given account using the requested size.
*