fix tab for gen_java.py

This commit is contained in:
Marek Smigielski 2016-08-10 12:03:28 +02:00
parent 723b42e0da
commit 1aa14e4929

View File

@ -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
''' '''
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):
''' '''