Build native libraries with arrayCopy method

This commit is contained in:
Taro L. Saito 2011-07-01 10:59:43 +09:00
parent da64065e18
commit c6e2aebe11
6 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ public class Snappy
* byte offset in the destination array
* @throws IOException
*/
static void arrayCopy(Object src, int offset, int byteLength, Object dest, int dest_offset) throws IOException {
public static void arrayCopy(Object src, int offset, int byteLength, Object dest, int dest_offset)
throws IOException {
impl.arrayCopy(src, offset, byteLength, dest, dest_offset);
}