--- a/app/src/main/java/com/beem/project/beem/BeemService.java Mon Jun 15 19:33:26 2015 +0200
+++ b/app/src/main/java/com/beem/project/beem/BeemService.java Mon Jun 15 19:57:41 2015 +0200
@@ -277,8 +277,8 @@
mPort = Integer.parseInt(tmpPort);
}
if (mSettings.getBoolean(BeemApplication.FULL_JID_LOGIN_KEY, false)
- || "gmail.com".equals(mService) || "googlemail.com".equals(mService)
- || useSystemAccount) {
+ || "gmail.com".equals(mService) || "googlemail.com".equals(mService)
+ || useSystemAccount) {
mLogin = tmpJid;
}
@@ -344,7 +344,7 @@
notif.ledOffMS = 1000;
notif.flags |= Notification.FLAG_SHOW_LIGHTS;
String ringtoneStr = mSettings.getString(BeemApplication.NOTIFICATION_SOUND_KEY,
- Settings.System.DEFAULT_NOTIFICATION_URI.toString());
+ Settings.System.DEFAULT_NOTIFICATION_URI.toString());
notif.sound = Uri.parse(ringtoneStr);
mNotificationManager.notify(id, notif);
}
@@ -450,7 +450,7 @@
try {
sslContext = SSLContext.getInstance("TLS");
sslContext.init(null, MemorizingTrustManager.getInstanceList(this),
- new java.security.SecureRandom());
+ new java.security.SecureRandom());
} catch (GeneralSecurityException e) {
Log.w(TAG, "Unable to use MemorizingTrustManager", e);
}