FIX: Range get stoped use exception as termination case sentinel

这个提交包含在:
Christos Choutouridis 2020-10-24 22:23:40 +03:00
父节点 524988079f
当前提交 79bb675c94

查看文件

@ -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 */