コード例 #1
0
 private void checkSize(int newcount) {
   if (newcount > bytes.length) {
     bytes = ArrayUtils.grow(bytes, newcount);
   }
 }