Skip to content

Commit 5797b6b

Browse files
author
Tushar Acharya
committed
Minor code cleanup
1 parent fe5bc04 commit 5797b6b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cardstack/src/main/java/com/mutualmobile/cardstack/CardStackAdapter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ public float getCardFinalY(int position) {
109109
}
110110

111111
private float getCardOriginalY(int position) {
112-
float cardOriginalY = mParentPaddingTop + mCardGap * position;
113-
return cardOriginalY;
112+
return mParentPaddingTop + mCardGap * position;
114113
}
115114

116115
public void resetCards(Runnable r) {

0 commit comments

Comments
 (0)