Remove OOB object destruction.

Change-Id: Icaa06aca4a701ec663c124d3141d9dbb633d7dc1
This commit is contained in:
Jason Sams
2010-08-17 19:28:29 -07:00
parent 2e1872fe07
commit d78be37d81
6 changed files with 1 additions and 86 deletions

View File

@@ -143,10 +143,6 @@ public class RenderScript {
synchronized void nObjDestroy(int id) {
rsnObjDestroy(mContext, id);
}
native void rsnObjDestroyOOB(int con, int id);
synchronized void nObjDestroyOOB(int id) {
rsnObjDestroyOOB(mContext, id);
}
native int rsnFileOpen(int con, byte[] name);
synchronized int nFileOpen(byte[] name) {
return rsnFileOpen(mContext, name);