wrap wakelock release with try catch
This commit is contained in:
parent
dfbc42ecd7
commit
b0a3c717d2
|
@ -510,7 +510,7 @@ public class XmppConnectionService extends Service {
|
|||
}
|
||||
}
|
||||
if (wakeLock.isHeld()) {
|
||||
wakeLock.release();
|
||||
try { wakeLock.release();} catch (RuntimeException re) {}
|
||||
}
|
||||
return START_STICKY;
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue