Ejemplo n.º 1
0
 /**
  * @throws StringIndexOutOfBoundsException {@inheritDoc}
  * @since 1.2
  */
 public synchronized StringBuffer replace(int start, int end, String str) {
   super.replace(start, end, str);
   return this;
 }
 /**
  * @throws StringIndexOutOfBoundsException {@inheritDoc}
  * @since 1.2
  */
 @Override
 public synchronized StringBuffer replace(int start, int end, String str) {
   toStringCache = null;
   super.replace(start, end, str);
   return this;
 }