06-21-2017, 02:47 AM
Всем доброго времени суток !
При компиляция выдает такую ошибку, подскажите пожалуйста что нужно сделать чтоб ее убрать ?
gameserver\model\Creature.java:1778: error: incompatible types
return _aveList;
^
required: FastList<Integer>
found: Object
gameserver\model\Creature.java:1783: error: cannot find symbol
if (!_aveList.contains(aeId))
^
symbol: method contains(int)
location: variable _aveList of type Object
gameserver\model\Creature.java:1785: error: cannot find symbol
_aveList.add(aeId);
^
symbol: method add(int)
location: variable _aveList of type Object
gameserver\model\Creature.java:1791: error: cannot find symbol
if (_aveList.contains(aeId))
^
symbol: method contains(int)
location: variable _aveList of type Object
gameserver\model\Creature.java:1793: error: cannot find symbol
_aveList.remove(_aveList.indexOf(aeId));