FIX: Range get stoped use exception as termination case sentinel
This commit is contained in:
parent
524988079f
commit
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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user