Misc. modules/ typos (cont.)
Found via `codespell`
This commit is contained in:
@@ -108,13 +108,13 @@
|
||||
" return result;",
|
||||
"\n",
|
||||
" } catch(const cv::Exception& e) {",
|
||||
" LOGD(\"Core::n_1minMaxLoc() catched cv::Exception: %s\", e.what());",
|
||||
" LOGD(\"Core::n_1minMaxLoc() caught cv::Exception: %s\", e.what());",
|
||||
" jclass je = env->FindClass(\"org/opencv/core/CvException\");",
|
||||
" if(!je) je = env->FindClass(\"java/lang/Exception\");",
|
||||
" env->ThrowNew(je, e.what());",
|
||||
" return NULL;",
|
||||
" } catch (...) {",
|
||||
" LOGD(\"Core::n_1minMaxLoc() catched unknown exception (...)\");",
|
||||
" LOGD(\"Core::n_1minMaxLoc() caught unknown exception (...)\");",
|
||||
" jclass je = env->FindClass(\"java/lang/Exception\");",
|
||||
" env->ThrowNew(je, \"Unknown exception in JNI code {core::minMaxLoc()}\");",
|
||||
" return NULL;",
|
||||
|
||||
Reference in New Issue
Block a user