Skip to content
Snippets Groups Projects
Unverified Commit aa3ef896 authored by Ernir Erlingsson's avatar Ernir Erlingsson
Browse files

further polish

parent da50c5dc
No related branches found
No related tags found
No related merge requests found
......@@ -49,8 +49,7 @@ public abstract class BriarFragmentActivity extends BriarActivity {
exiting. This models the typical Google navigation behaviour such
as in Gmail/Inbox.
*/
// FIXME
// startFragment(ContactListFragment.newInstance());
startFragment(activityComponent.newContactListFragment());
} else {
super.onBackPressed();
......
......@@ -45,7 +45,6 @@ public class BriarControllerImp implements BriarController {
@Override
@CallSuper
public void onActivityCreate() {
LOG.info("onActivityCreate : " + databaseConfig.getEncryptionKey());
if (databaseConfig.getEncryptionKey() != null) startAndBindService();
}
......
......@@ -52,7 +52,7 @@ public class IntroductionMessageFragment extends BaseFragment {
Bundle args = new Bundle();
args.putInt(CONTACT_ID_1, contactId1);
args.putInt(CONTACT_ID_2, contactId2);
this.setArguments(args);
setArguments(args);
}
@Inject
......
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