View | Details | Raw Unified | Return to bug 55604
Collapse All | Expand All

(-)/home/willy/Downloads/poi-3.8/src/scratchpad/src/org/apache/poi/hwpf/sprm/SprmBuffer.java (-2 / +5 lines)
Lines 125-132 Link Here
125
  public void append( byte[] grpprl, int offset )
125
  public void append( byte[] grpprl, int offset )
126
{
126
{
127
    ensureCapacity( grpprl.length - offset );
127
    ensureCapacity( grpprl.length - offset );
128
    System.arraycopy( grpprl, offset, _buf, _offset, grpprl.length - offset );
128
    
129
    _offset += grpprl.length - offset;
129
    try{
130
    	System.arraycopy( grpprl, offset, _buf, _offset, grpprl.length - offset );
131
    	_offset += grpprl.length - offset;
132
    }catch (Throwable e) {}
130
}
133
}
131
  public Object clone()
134
  public Object clone()
132
    throws CloneNotSupportedException
135
    throws CloneNotSupportedException

Return to bug 55604