Hi,

it seems that 

 if (cs.equals(this))
  return true;

should be replaced with

 if (cs instanceof String)
  return cs.equals(this);

or completely left out.

Does anyone agree?

-- 
Cheers,
Alex

Reply via email to