mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
Swallow Android clipboard bug (?)
git-svn-id: https://zxing.googlecode.com/svn/trunk@2891 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
7606df6da0
commit
23ebe5710c
|
@ -41,6 +41,9 @@ public final class ClipboardInterface {
|
|||
} catch (NullPointerException npe) {
|
||||
// Have seen this in the wild, bizarrely
|
||||
Log.w(TAG, "Clipboard bug", npe);
|
||||
} catch (IllegalStateException ise) {
|
||||
// java.lang.IllegalStateException: beginBroadcast() called while already in a broadcast
|
||||
Log.w(TAG, "Clipboard bug", ise);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue