String formatHour(int hour) { if (hour > 12) { return formatNumber(hour - 12); } else { return formatNumber(hour); } }