Commit 1aa14e49 authored by Marek Smigielski's avatar Marek Smigielski

fix tab for gen_java.py

parent 723b42e0
...@@ -1442,7 +1442,7 @@ JNIEXPORT $rtype JNICALL Java_org_opencv_${module}_${clazz}_$fname ...@@ -1442,7 +1442,7 @@ JNIEXPORT $rtype JNICALL Java_org_opencv_${module}_${clazz}_$fname
cvargs = ", ".join(cvargs), \ cvargs = ", ".join(cvargs), \
default = default, \ default = default, \
retval = retval, \ retval = retval, \
namespace = ('using namespace ' + ci.namespace.replace('.', '::') + ';') if ci.namespace else '' namespace = ('using namespace ' + ci.namespace.replace('.', '::') + ';') if ci.namespace else ''
) ) ) )
# processing args with default values # processing args with default values
...@@ -1538,7 +1538,7 @@ JNIEXPORT void JNICALL Java_org_opencv_%(module)s_%(j_cls)s_delete ...@@ -1538,7 +1538,7 @@ JNIEXPORT void JNICALL Java_org_opencv_%(module)s_%(j_cls)s_delete
''' '''
Check if class stores Ptr<T>* instead of T* in nativeObj field Check if class stores Ptr<T>* instead of T* in nativeObj field
''' '''
return False return False
def smartWrap(self, name, fullname): def smartWrap(self, name, fullname):
''' '''
......
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