formating
diff --git a/src/com/savoirfairelinux/sflphone/client/SFLphoneApplication.java b/src/com/savoirfairelinux/sflphone/client/SFLphoneApplication.java
index 4fc4427..ca59868 100644
--- a/src/com/savoirfairelinux/sflphone/client/SFLphoneApplication.java
+++ b/src/com/savoirfairelinux/sflphone/client/SFLphoneApplication.java
@@ -12,89 +12,100 @@
 import com.savoirfairelinux.sflphone.service.ISipService;
 import com.savoirfairelinux.sflphone.service.SipService;
 
-public class SFLphoneApplication extends Application {
+public class SFLphoneApplication extends Application
+{
 
-    static final String TAG = "SFLphoneApplication";
-    private boolean serviceRunning = false;
-    private ISipService sipService;
-    private AccountListReceiver accountList = new AccountListReceiver();
+	static final String TAG = "SFLphoneApplication";
+	private boolean serviceRunning = false;
+	private ISipService sipService;
+	private AccountListReceiver accountList = new AccountListReceiver();
 
-    private void startSipService() {
-        Thread thread = new Thread("StartSFLphoneService") {
-            public void run() {
-                Log.i(TAG, "SipService launching thread");
-                Intent sipServiceIntent = new Intent(SFLphoneApplication.this, SipService.class);
-                //sipServiceIntent.putExtra(ServiceConstants.EXTRA_OUTGOING_ACTIVITY, new ComponentName(SFLPhoneHome.this, SFLPhoneHome.class));
-                startService(sipServiceIntent);
-                serviceRunning = true;
-            };
-        };
-        try {
-            thread.start();
-        } catch (IllegalThreadStateException e) {
-            AlertDialog.Builder builder = new AlertDialog.Builder(this);
-            builder.setMessage("Cannot start SFLPhone SipService!");
-            AlertDialog alert = builder.create();
-            alert.show();
-            //TODO exit application
-        }
-    }
+	private void startSipService()
+	{
+		Thread thread = new Thread("StartSFLphoneService") {
+			public void run()
+			{
+				Log.i(TAG, "SipService launching thread");
+				Intent sipServiceIntent = new Intent(SFLphoneApplication.this, SipService.class);
+				//sipServiceIntent.putExtra(ServiceConstants.EXTRA_OUTGOING_ACTIVITY, new ComponentName(SFLPhoneHome.this, SFLPhoneHome.class));
+				startService(sipServiceIntent);
+				serviceRunning = true;
+			};
+		};
+		try {
+			thread.start();
+		} catch (IllegalThreadStateException e) {
+			AlertDialog.Builder builder = new AlertDialog.Builder(this);
+			builder.setMessage("Cannot start SFLPhone SipService!");
+			AlertDialog alert = builder.create();
+			alert.show();
+			//TODO exit application
+		}
+	}
 
-    @Override
-    public void onCreate() {
-        super.onCreate();
-        Log.i(TAG, "onCreate");
+	@Override
+	public void onCreate()
+	{
+		super.onCreate();
+		Log.i(TAG, "onCreate");
 
-        if (!serviceRunning) {
-            Log.i(TAG, "starting SipService");
-            startSipService();
-        }
-    }
+		if (!serviceRunning) {
+			Log.i(TAG, "starting SipService");
+			startSipService();
+		}
+	}
 
-    @Override
-    public void onTerminate() {
-        super.onTerminate();
-        Log.i(TAG, "onTerminate");
+	@Override
+	public void onTerminate()
+	{
+		super.onTerminate();
+		Log.i(TAG, "onTerminate");
 
-        if (serviceRunning) {
-            Log.i(TAG, "onDestroy: stopping SipService...");
-            stopService(new Intent(this, SipService.class));
-            serviceRunning = false;
-        }
-    }
+		if (serviceRunning) {
+			Log.i(TAG, "onDestroy: stopping SipService...");
+			stopService(new Intent(this, SipService.class));
+			serviceRunning = false;
+		}
+	}
 
-    public boolean isServiceRunning() {
-        return serviceRunning;
-    }
+	public boolean isServiceRunning()
+	{
+		return serviceRunning;
+	}
 
-    public void setServiceRunning(boolean r) {
-        this.serviceRunning = r;
-    }
+	public void setServiceRunning(boolean r)
+	{
+		this.serviceRunning = r;
+	}
 
-    public ISipService getSipService() {
-        return sipService;
-    }
+	public ISipService getSipService()
+	{
+		return sipService;
+	}
 
-    public void setSipService(ISipService service) {
-        sipService = service;
-    }
+	public void setSipService(ISipService service)
+	{
+		sipService = service;
+	}
 
-    public AccountListReceiver getAccountList() {
-        return accountList;
-    }
+	public AccountListReceiver getAccountList()
+	{
+		return accountList;
+	}
 
-    public String getAppPath() {
-        PackageManager pkgMng = getPackageManager();
-        String pkgName = getPackageName();
+	public String getAppPath()
+	{
+		PackageManager pkgMng = getPackageManager();
+		String pkgName = getPackageName();
 
-        try {
-            PackageInfo pkgInfo = pkgMng.getPackageInfo(pkgName, 0);
-            pkgName = pkgInfo.applicationInfo.dataDir;
-        } catch (NameNotFoundException e) {
-            Log.w(TAG, "Error Package name not found ", e);
-        }
+		try {
+			PackageInfo pkgInfo = pkgMng.getPackageInfo(pkgName, 0);
+			pkgName = pkgInfo.applicationInfo.dataDir;
+		} catch (NameNotFoundException e) {
+			Log.w(TAG, "Error Package name not found ", e);
+		}
 
-        Log.d(TAG, "Application path: " + pkgName);
-        return pkgName;
-    }
+		Log.d(TAG, "Application path: " + pkgName);
+		return pkgName;
+	}
 }