Update android+AsyncServiceHelper.java

small formatting fixes
This commit is contained in:
Simon Heinen 2015-04-02 09:05:56 +02:00
parent 0df9dc8fb9
commit d2dc7f4c27

View File

@ -23,9 +23,9 @@ class AsyncServiceHelper
AsyncServiceHelper helper = new AsyncServiceHelper(Version, AppContext, Callback);
Intent intent = new Intent("org.opencv.engine.BIND");
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
{