removed dead code + null check

This commit is contained in:
Daniel Gultsch 2018-05-10 18:59:17 +02:00
parent b0db88c405
commit 678fcf8b31
2 changed files with 1 additions and 8 deletions

View File

@ -94,13 +94,6 @@ public class MessageGenerator extends AbstractGenerator {
return packet;
}
public static void addMessageHints(MessagePacket packet) {
packet.addChild("private", "urn:xmpp:carbons:2");
packet.addChild("no-copy", "urn:xmpp:hints");
packet.addChild("no-permanent-store", "urn:xmpp:hints");
packet.addChild("no-permanent-storage", "urn:xmpp:hints"); //do not copy this. this is wrong. it is *store*
}
public MessagePacket generateChat(Message message) {
MessagePacket packet = preparePacket(message);
String content;

View File

@ -919,7 +919,7 @@ public class XmppConnectionService extends Service {
public boolean hasInternetConnection() {
final ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
try {
final NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
final NetworkInfo activeNetwork = cm == null ? null : cm.getActiveNetworkInfo();
return activeNetwork != null && activeNetwork.isConnected();
} catch (RuntimeException e) {
Log.d(Config.LOGTAG, "unable to check for internet connection", e);