()
| 330 | } |
| 331 | |
| 332 | private static boolean isChristmas() |
| 333 | { |
| 334 | Calendar calendar = Calendar.getInstance(); |
| 335 | return calendar.get(2) + 1 == 12 && calendar.get(5) >= 24 && calendar.get(5) <= 26; |
| 336 | } |
| 337 | |
| 338 | private static void warn(String str) |
| 339 | { |
no test coverage detected