private boolean isDailyRevenueAvailable() { if (Utils.getHourOfDay() < 11) { return false; } return !mIsDailyRevenueShowed && mLastVisitDayCount - Utils.getDayOfMonth() > 0; }
private boolean isLivesRestored() { if (Utils.getHourOfDay() < 11) { return false; } return !mIsFullLivesNotification && System.currentTimeMillis() >= mLastLiveRestoreTime; }