Skip to content

Commit

Permalink
Minor nits
Browse files Browse the repository at this point in the history
Removed unnecessary boolean initializations
  • Loading branch information
vinaygaba committed Apr 22, 2017
1 parent 57aac07 commit 3956070
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,17 @@ public class CreditCardView extends RelativeLayout {
private int mType = VISA;
private int mBrandLogo;
private int cardSide = CARD_FRONT;
private boolean mPutChip = false;
private boolean mIsEditable = false;
private boolean mIsCardNumberEditable = false;
private boolean mIsCardNameEditable = false;
private boolean mIsExpiryDateEditable = false;
private boolean mIsCvvEditable = false;
private boolean mPutChip;
private boolean mIsEditable;
private boolean mIsCardNumberEditable;
private boolean mIsCardNameEditable;
private boolean mIsExpiryDateEditable;
private boolean mIsCvvEditable;
private boolean mIsFlippable;
private int mHintTextColor = Color.WHITE;
private int mCvvHintColor = Color.WHITE;
private int mCardFrontBackground;
private int mCardBackBackground;
private boolean mIsFlippable = false;
private Typeface creditCardTypeFace;
private ImageButton mFlipBtn;
private EditText mCardNumberView;
Expand Down

0 comments on commit 3956070

Please sign in to comment.