Fields that we sync on should be final

This commit is contained in:
Sam Whited 2014-11-07 22:21:18 -05:00
parent e49c2b14ed
commit 5ce0cd3802
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public class AvatarService {
private static final String PREFIX_ACCOUNT = "account";
private static final String PREFIX_GENERIC = "generic";
private ArrayList<Integer> sizes = new ArrayList<Integer>();
final private ArrayList<Integer> sizes = new ArrayList<>();
protected XmppConnectionService mXmppConnectionService = null;