switch块缺少default语句

问题遇到的现象和发生背景

遇到的问题是:switch块缺少default语句(at line 487----at line 490)

用代码块功能插入代码,请勿粘贴截图
static public void toTimer(long time) {
    if(PluginController.init(ColosseumController.class, "toTimer", time, list) != null) {
        return;
    }
    
    // 각 마을별 시간 확인.
    int h = ServerDatabase.getLineageTimeHour();
    int m = ServerDatabase.getLineageTimeMinute();
    for(Colosseum c : list){
        for(int c_h : c.getTimeStart()){
            if(c_h==h || c.getStatus()!=COLOSSEUM_STATUS.휴식){
                switch(c.getStatus()){
                    case 휴식:
                        // 안내 멘트 날리기.
                        switch(++c.timer_ment_cnt){
                            case 1:
                                // 전체채팅 잠시 닫기.
                                ChattingController.setGlobal(false);
                                // 안내 멘트.
                                ChattingController.toChatting(null, "********************。", Lineage.CHATTING_MODE_GLOBAL);
                                break;
                            case 6:
                                // 안내 멘트.
                                ChattingController.toChatting(null, String.format(""********************.", c.toString(h)), Lineage.CHATTING_MODE_GLOBAL);
                                break;
                            case 9:
                                // 안내 멘트.
                                ChattingController.toChatting(null, ""********************。..!!.", Lineage.CHATTING_MODE_GLOBAL);
                                // 상태 변경.
                                c.setStatus(COLOSSEUM_STATUS.대기);
                                // 초기화.
                                c.timer_ment_cnt = 0;
                                // 전체채팅 다시 활성화.
                                ChattingController.setGlobal(true);
                                break;
                                }
                        break;

你都知道是缺少default,加上不就得了
到底哪不会
不就是这样吗

switch(a)
{
case 1:
    break;
default:
    break;
}