ソースを参照

FIX: Range get stoped use exception as termination case sentinel

tags/v1.0b1
コミット
79bb675c94
1個のファイルの変更2行の追加5行の削除
  1. +2
    -5
      src/net/hoo2/auth/labyrinth/Common.java

+ 2
- 5
src/net/hoo2/auth/labyrinth/Common.java ファイルの表示

@@ -172,12 +172,9 @@ class Range {
* @return The first item of the range or Const.noTileId if there is none.
*/
int get () {
try {
if (!numbers.isEmpty())
return numbers.remove(0);
}
catch (IndexOutOfBoundsException e) {
return Const.noTileId;
}
return Const.noTileId;
}

/** @name protected data types */


読み込み中…
キャンセル
保存