Ejemplo n.º 1
0
 /**
  * @throws StringIndexOutOfBoundsException {@inheritDoc}
  * @since 1.2
  */
 public synchronized StringBuffer deleteCharAt(int index) {
   super.deleteCharAt(index);
   return this;
 }
 /**
  * @throws StringIndexOutOfBoundsException {@inheritDoc}
  * @since 1.2
  */
 @Override
 public synchronized StringBuffer deleteCharAt(int index) {
   toStringCache = null;
   super.deleteCharAt(index);
   return this;
 }