Commit d2dc7f4c authored by Simon Heinen's avatar Simon Heinen

Update android+AsyncServiceHelper.java

small formatting fixes
parent 0df9dc8f
...@@ -23,9 +23,9 @@ class AsyncServiceHelper ...@@ -23,9 +23,9 @@ class AsyncServiceHelper
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, Context.BIND_AUTO_CREATE)) if (AppContext.bindService(intent, helper.mServiceConnection, 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