Cubby で Cool Deploy と Hot Deploy の違いに泣いた

 下のような Cubby の Action クラスがあったとします。AbstractListAction は Action を継承した抽象クラスです。

@Path("hoge")
public class HogeListAction extends AbstractListAction {
    // 中略
}

 それで、View の JSP が違うだけで Action が同じ画面があったので、以下のようなクラスを作りました。

@Path("fuga")
public class FugaListAction extends HogeListAction {
}

 これで実行してみたんですが、Hot Deploy では意図したように動くんですが、Cool Deploy では動きませんでした。