Skip to content
Snippets Groups Projects
Commit 52214990 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

minor code cleaning

parent 63870a79
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,6 @@
android:gravity="center_vertical"
android:paddingBottom="10dip"
android:paddingLeft="15dip"
android:textColor="@color/black"
android:paddingTop="10dip"
android:textSize="24sp"
android:textAppearance="?android:attr/textAppearanceMedium" />
android:textColor="@color/black"
android:textSize="24sp" />
......@@ -94,7 +94,7 @@ public class AccountCreationFragment extends Fragment {
}
});
inflatedView.findViewById(R.id.dev_account).setVisibility(View.GONE); // Hide this button in release apk
// inflatedView.findViewById(R.id.dev_account).setVisibility(View.GONE); // Hide this button in release apk
inflatedView.findViewById(R.id.dev_account).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
......
......@@ -143,12 +143,11 @@ public class SipService extends Service {
@Override
public void onDestroy() {
Log.i(TAG, "onDestroyed");
Log.i(TAG, "onDestroy");
/* called once by stopService() */
LocalBroadcastManager.getInstance(this).unregisterReceiver(receiver);
notificationManager.onServiceDestroy();
// sflphoneApp.setServiceRunning(false);
getExecutor().execute(new FinalizeRunnable());
super.onDestroy();
......
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