Changed delete() modifier to public from protected

This commit is contained in:
sgjava 2015-05-13 13:44:53 -04:00
parent 4743184078
commit fe0ce9282a

View File

@ -1530,7 +1530,7 @@ JNIEXPORT $rtype JNICALL Java_org_opencv_${module}_${clazz}_$fname
# finalize()
ci.j_code.write(
"""
protected void delete() {
public void delete() {
delete(nativeObj);
}
""" )