mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-21 21:29:00 +00:00
Converted Integer constants -> int
Integer isn't necessary and actually just slows things down due to autoboxing.
This commit is contained in:
parent
a1a8fb7384
commit
d169613478
1 changed files with 4 additions and 4 deletions
|
|
@ -22,10 +22,10 @@ import java.util.concurrent.atomic.AtomicInteger;
|
|||
|
||||
public class UserPicture {
|
||||
|
||||
private static final Integer WIDTH = 140;
|
||||
private static final Integer HEIGHT = 147;
|
||||
private static final Integer COMPACT_WIDTH = 103;
|
||||
private static final Integer COMPACT_HEIGHT = 90;
|
||||
private static final int WIDTH = 140;
|
||||
private static final int HEIGHT = 147;
|
||||
private static final int COMPACT_WIDTH = 103;
|
||||
private static final int COMPACT_HEIGHT = 90;
|
||||
|
||||
private HabitRPGUser user;
|
||||
private ImageView imageView;
|
||||
|
|
|
|||
Loading…
Reference in a new issue