I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 4749e470 authored by str4d's avatar str4d
Browse files

Fixed static reference

parent 05538157
No related branches found
No related tags found
No related merge requests found
package net.i2p.android.router.fragment;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.content.SharedPreferences;
......@@ -220,7 +221,7 @@ public abstract class I2PFragmentBase extends Fragment {
intent.setClassName(getActivity(), "net.i2p.android.router.service.RouterService");
Util.i(this + " calling bindService");
_connection = new RouterConnection();
_triedBind = getActivity().bindService(intent, _connection, autoCreate ? getActivity().BIND_AUTO_CREATE : 0);
_triedBind = getActivity().bindService(intent, _connection, autoCreate ? Context.BIND_AUTO_CREATE : 0);
Util.i(this + " bindService: auto create? " + autoCreate + " success? " + _triedBind);
return _triedBind;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment