wrap wakelock release with try catch

This commit is contained in:
iNPUTmice 2014-06-25 17:06:20 +02:00
parent dfbc42ecd7
commit b0a3c717d2
3 changed files with 7 additions and 7 deletions

View file

@ -510,7 +510,7 @@ public class XmppConnectionService extends Service {
}
}
if (wakeLock.isHeld()) {
wakeLock.release();
try { wakeLock.release();} catch (RuntimeException re) {}
}
return START_STICKY;
}

View file

@ -51,7 +51,7 @@ public class XmlReader {
public Tag readTag() throws XmlPullParserException, IOException {
if (wakeLock.isHeld()) {
wakeLock.release();
try { wakeLock.release();} catch (RuntimeException re) {}
}
try {
while(parser.next() != XmlPullParser.END_DOCUMENT) {
@ -75,7 +75,7 @@ public class XmlReader {
}
}
if (wakeLock.isHeld()) {
wakeLock.release();
try { wakeLock.release();} catch (RuntimeException re) {}
}
} catch (ArrayIndexOutOfBoundsException e) {
throw new IOException("xml parser mishandled ArrayIndexOufOfBounds", e);

View file

@ -183,7 +183,7 @@ public class XmppConnection implements Runnable {
} catch (UnknownHostException e) {
this.changeStatus(Account.STATUS_SERVER_NOT_FOUND);
if (wakeLock.isHeld()) {
wakeLock.release();
try { wakeLock.release();} catch (RuntimeException re) {}
}
return;
} catch (IOException e) {
@ -191,21 +191,21 @@ public class XmppConnection implements Runnable {
this.changeStatus(Account.STATUS_OFFLINE);
}
if (wakeLock.isHeld()) {
wakeLock.release();
try { wakeLock.release();} catch (RuntimeException re) {}
}
return;
} catch (NoSuchAlgorithmException e) {
this.changeStatus(Account.STATUS_OFFLINE);
Log.d(LOGTAG, "compression exception " + e.getMessage());
if (wakeLock.isHeld()) {
wakeLock.release();
try { wakeLock.release();} catch (RuntimeException re) {}
}
return;
} catch (XmlPullParserException e) {
this.changeStatus(Account.STATUS_OFFLINE);
Log.d(LOGTAG, "xml exception " + e.getMessage());
if (wakeLock.isHeld()) {
wakeLock.release();
try { wakeLock.release();} catch (RuntimeException re) {}
}
return;
}