Skip to content

Commit 57d7b50

Browse files
committed
Remove useless parentheses
1 parent 2d6a106 commit 57d7b50

File tree

1 file changed

+1
-1
lines changed
  • library/src/main/java/com/vorlonsoft/android/rate

1 file changed

+1
-1
lines changed

library/src/main/java/com/vorlonsoft/android/rate/AppRate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ private boolean isOverLastAgreeShowFalseDate() {
989989
return false;
990990
}
991991

992-
return ((repromptDate == 0L)) || isOverDate(getLastAgreeShowFalseDate(context), repromptDate);
992+
return (repromptDate == 0L) || isOverDate(getLastAgreeShowFalseDate(context), repromptDate);
993993
}
994994

995995
private boolean isOverLaunchTimes() {

0 commit comments

Comments
 (0)