Changed delete() modifier to public from protected
authorsgjava <sgjava@gmail.com>
Wed, 13 May 2015 17:44:53 +0000 (13:44 -0400)
committersgjava <sgjava@gmail.com>
Wed, 13 May 2015 17:44:53 +0000 (13:44 -0400)
modules/java/generator/gen_java.py

index cbc2848..eccc541 100755 (executable)
@@ -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);
     }
 """ )