Skip to content

Commit

Permalink
Remove useless parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
sampengilly committed Jan 8, 2020
1 parent 2d6a106 commit 57d7b50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ private boolean isOverLastAgreeShowFalseDate() {
return false;
}

return ((repromptDate == 0L)) || isOverDate(getLastAgreeShowFalseDate(context), repromptDate);
return (repromptDate == 0L) || isOverDate(getLastAgreeShowFalseDate(context), repromptDate);
}

private boolean isOverLaunchTimes() {
Expand Down

0 comments on commit 57d7b50

Please sign in to comment.