i have used linkedlist to make the sprite display in cocos2d-android game app, if the sprite is destroyed it should get permanently destroyed and get removed, but this sprite disappears and again appears, dont know how to remove the sprite permanently, any helps? This is the code for delete.
for (CCSprite ship2 : shipsToDelete)
{
_ships2.remove(ship2);
removeChild(ship2, true);
}