static bool hasDateExpired(int month, int year) { return !(month == null || year == null) && isNotExpired(year, month); }