Commit 0df9dc8f authored by Simon Heinen's avatar Simon Heinen

Update android+AsyncServiceHelper.java

changed tabs in last commit to spaces
parent 5d97dd0e
...@@ -21,11 +21,11 @@ class AsyncServiceHelper ...@@ -21,11 +21,11 @@ class AsyncServiceHelper
final LoaderCallbackInterface Callback) final LoaderCallbackInterface Callback)
{ {
AsyncServiceHelper helper = new AsyncServiceHelper(Version, AppContext, Callback); AsyncServiceHelper helper = new AsyncServiceHelper(Version, AppContext, Callback);
Intent intent = new Intent("org.opencv.engine.BIND"); Intent intent = new Intent("org.opencv.engine.BIND");
intent.setPackage("org.opencv.engine"); intent.setPackage("org.opencv.engine");
if (AppContext.bindService(intent, helper.mServiceConnection, if (AppContext.bindService(intent, helper.mServiceConnection, Context.BIND_AUTO_CREATE))
Context.BIND_AUTO_CREATE)) { {
return true; return true;
} }
else else
{ {
......
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