Skip to content

Commit e4377e7

Browse files
committed
Merge pull request opencv#8335 from kuanyili:typo-patch
2 parents 8ef23d6 + e685dce commit e4377e7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

modules/java/generator/src/java/android+AsyncServiceHelper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public void install()
131131
}
132132
public void cancel()
133133
{
134-
Log.d(TAG, "Wating for OpenCV canceled by user");
134+
Log.d(TAG, "Waiting for OpenCV canceled by user");
135135
mServiceInstallationProgress = false;
136136
int Status = LoaderCallbackInterface.INSTALL_CANCELED;
137137
Log.d(TAG, "Init finished with status " + Status);
@@ -197,7 +197,7 @@ public void install() {
197197
if (mEngineService.installVersion(mOpenCVersion))
198198
{
199199
mLibraryInstallationProgress = true;
200-
Log.d(TAG, "Package installation statred");
200+
Log.d(TAG, "Package installation started");
201201
Log.d(TAG, "Unbind from service");
202202
mAppContext.unbindService(mServiceConnection);
203203
}
@@ -228,7 +228,7 @@ public void cancel() {
228228
mUserAppCallback.onManagerConnected(LoaderCallbackInterface.INSTALL_CANCELED);
229229
}
230230
public void wait_install() {
231-
Log.e(TAG, "Instalation was not started! Nothing to wait!");
231+
Log.e(TAG, "Installation was not started! Nothing to wait!");
232232
}
233233
};
234234

modules/java/generator/src/java/android+BaseLoaderCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void onClick(DialogInterface dialog, int which) {
4343
/** Package installation has been canceled. **/
4444
case LoaderCallbackInterface.INSTALL_CANCELED:
4545
{
46-
Log.d(TAG, "OpenCV library instalation was canceled by user");
46+
Log.d(TAG, "OpenCV library installation was canceled by user");
4747
finish();
4848
} break;
4949
/** Application is incompatible with this version of OpenCV Manager. Possibly, a service update is required. **/

modules/java/generator/src/java/android+JavaCameraView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ protected void disconnectCamera() {
275275
synchronized (this) {
276276
this.notify();
277277
}
278-
Log.d(TAG, "Wating for thread");
278+
Log.d(TAG, "Waiting for thread");
279279
if (mThread != null)
280280
mThread.join();
281281
} catch (InterruptedException e) {

0 commit comments

Comments
 (0)