}
if (!(otherList instanceof ByteList))
{
return false;
}
ByteList list = (ByteList) otherList;
if (this.items.length != list.size())
{
return false;
}
for (int i = 0; i < this.items.length; i++)
{
if (this.items[i] != list.get(i))
{
return false;
}
}
return true;