@@ -1855,35 +1855,35 @@ public void insertRow(int insert, Object[] columnData) {
1855
1855
case INT : {
1856
1856
int [] intTemp = new int [rowCount +1 ];
1857
1857
System .arraycopy (columns [col ], 0 , intTemp , 0 , insert );
1858
- System .arraycopy (columns [col ], insert , intTemp , insert +1 , ( rowCount - insert ) + 1 );
1858
+ System .arraycopy (columns [col ], insert , intTemp , insert +1 , rowCount - insert );
1859
1859
columns [col ] = intTemp ;
1860
1860
break ;
1861
1861
}
1862
1862
case LONG : {
1863
1863
long [] longTemp = new long [rowCount +1 ];
1864
1864
System .arraycopy (columns [col ], 0 , longTemp , 0 , insert );
1865
- System .arraycopy (columns [col ], insert , longTemp , insert +1 , ( rowCount - insert ) + 1 );
1865
+ System .arraycopy (columns [col ], insert , longTemp , insert +1 , rowCount - insert );
1866
1866
columns [col ] = longTemp ;
1867
1867
break ;
1868
1868
}
1869
1869
case FLOAT : {
1870
1870
float [] floatTemp = new float [rowCount +1 ];
1871
1871
System .arraycopy (columns [col ], 0 , floatTemp , 0 , insert );
1872
- System .arraycopy (columns [col ], insert , floatTemp , insert +1 , ( rowCount - insert ) + 1 );
1872
+ System .arraycopy (columns [col ], insert , floatTemp , insert +1 , rowCount - insert );
1873
1873
columns [col ] = floatTemp ;
1874
1874
break ;
1875
1875
}
1876
1876
case DOUBLE : {
1877
1877
double [] doubleTemp = new double [rowCount +1 ];
1878
1878
System .arraycopy (columns [col ], 0 , doubleTemp , 0 , insert );
1879
- System .arraycopy (columns [col ], insert , doubleTemp , insert +1 , ( rowCount - insert ) + 1 );
1879
+ System .arraycopy (columns [col ], insert , doubleTemp , insert +1 , rowCount - insert );
1880
1880
columns [col ] = doubleTemp ;
1881
1881
break ;
1882
1882
}
1883
1883
case STRING : {
1884
1884
String [] stringTemp = new String [rowCount +1 ];
1885
1885
System .arraycopy (columns [col ], 0 , stringTemp , 0 , insert );
1886
- System .arraycopy (columns [col ], insert , stringTemp , insert +1 , ( rowCount - insert ) + 1 );
1886
+ System .arraycopy (columns [col ], insert , stringTemp , insert +1 , rowCount - insert );
1887
1887
columns [col ] = stringTemp ;
1888
1888
break ;
1889
1889
}
0 commit comments