Fixes after comments, also removed the CryptoComoponent from the IdentIcons

This commit is contained in:
Ernir Erlingsson
2016-03-03 23:00:57 +01:00
parent 95d89553d5
commit 5aba1d79f1
16 changed files with 21 additions and 209 deletions

View File

@@ -19,7 +19,6 @@ import im.delight.android.identicons.IdenticonDrawable;
public class AuthorView extends FrameLayout {
@Inject protected CryptoComponent crypto;
private ImageView avatarView;
private TextView nameView;
private ImageView statusView;
@@ -61,7 +60,7 @@ public class AuthorView extends FrameLayout {
} else {
nameView.setText(name);
avatarView.setImageDrawable(
new IdenticonDrawable(crypto, id.getBytes()));
new IdenticonDrawable(id.getBytes()));
}
switch(status) {