Commit 52fa55a7 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #4014 from sgjava:opencv-sgjava

parents a87e1c2f 8b3b2a52
...@@ -640,6 +640,7 @@ public class Mat { ...@@ -640,6 +640,7 @@ public class Mat {
{ {
n_release(nativeObj); n_release(nativeObj);
n_delete(nativeObj);
return; return;
} }
...@@ -906,12 +907,6 @@ public class Mat { ...@@ -906,12 +907,6 @@ public class Mat {
return retVal; return retVal;
} }
@Override
protected void finalize() throws Throwable {
n_delete(nativeObj);
super.finalize();
}
// javadoc:Mat::toString() // javadoc:Mat::toString()
@Override @Override
public String toString() { public String toString() {
......
...@@ -1530,7 +1530,7 @@ JNIEXPORT $rtype JNICALL Java_org_opencv_${module}_${clazz}_$fname ...@@ -1530,7 +1530,7 @@ JNIEXPORT $rtype JNICALL Java_org_opencv_${module}_${clazz}_$fname
# finalize() # finalize()
ci.j_code.write( ci.j_code.write(
""" """
protected void delete() { public void delete() {
delete(nativeObj); delete(nativeObj);
} }
""" ) """ )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment