Commit e685dcef authored by Kuan-Yi Li's avatar Kuan-Yi Li

Fix typos

parent 24efb02d
...@@ -131,7 +131,7 @@ class AsyncServiceHelper ...@@ -131,7 +131,7 @@ class AsyncServiceHelper
} }
public void cancel() public void cancel()
{ {
Log.d(TAG, "Wating for OpenCV canceled by user"); Log.d(TAG, "Waiting for OpenCV canceled by user");
mServiceInstallationProgress = false; mServiceInstallationProgress = false;
int Status = LoaderCallbackInterface.INSTALL_CANCELED; int Status = LoaderCallbackInterface.INSTALL_CANCELED;
Log.d(TAG, "Init finished with status " + Status); Log.d(TAG, "Init finished with status " + Status);
...@@ -197,7 +197,7 @@ class AsyncServiceHelper ...@@ -197,7 +197,7 @@ class AsyncServiceHelper
if (mEngineService.installVersion(mOpenCVersion)) if (mEngineService.installVersion(mOpenCVersion))
{ {
mLibraryInstallationProgress = true; mLibraryInstallationProgress = true;
Log.d(TAG, "Package installation statred"); Log.d(TAG, "Package installation started");
Log.d(TAG, "Unbind from service"); Log.d(TAG, "Unbind from service");
mAppContext.unbindService(mServiceConnection); mAppContext.unbindService(mServiceConnection);
} }
...@@ -228,7 +228,7 @@ class AsyncServiceHelper ...@@ -228,7 +228,7 @@ class AsyncServiceHelper
mUserAppCallback.onManagerConnected(LoaderCallbackInterface.INSTALL_CANCELED); mUserAppCallback.onManagerConnected(LoaderCallbackInterface.INSTALL_CANCELED);
} }
public void wait_install() { public void wait_install() {
Log.e(TAG, "Instalation was not started! Nothing to wait!"); Log.e(TAG, "Installation was not started! Nothing to wait!");
} }
}; };
......
...@@ -43,7 +43,7 @@ public abstract class BaseLoaderCallback implements LoaderCallbackInterface { ...@@ -43,7 +43,7 @@ public abstract class BaseLoaderCallback implements LoaderCallbackInterface {
/** Package installation has been canceled. **/ /** Package installation has been canceled. **/
case LoaderCallbackInterface.INSTALL_CANCELED: case LoaderCallbackInterface.INSTALL_CANCELED:
{ {
Log.d(TAG, "OpenCV library instalation was canceled by user"); Log.d(TAG, "OpenCV library installation was canceled by user");
finish(); finish();
} break; } break;
/** Application is incompatible with this version of OpenCV Manager. Possibly, a service update is required. **/ /** Application is incompatible with this version of OpenCV Manager. Possibly, a service update is required. **/
......
...@@ -275,7 +275,7 @@ public class JavaCameraView extends CameraBridgeViewBase implements PreviewCallb ...@@ -275,7 +275,7 @@ public class JavaCameraView extends CameraBridgeViewBase implements PreviewCallb
synchronized (this) { synchronized (this) {
this.notify(); this.notify();
} }
Log.d(TAG, "Wating for thread"); Log.d(TAG, "Waiting for thread");
if (mThread != null) if (mThread != null)
mThread.join(); mThread.join();
} catch (InterruptedException e) { } catch (InterruptedException e) {
......
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