Swallow Android clipboard bug (?)

git-svn-id: https://zxing.googlecode.com/svn/trunk@2891 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen@gmail.com 2013-09-09 09:16:35 +00:00
parent 7606df6da0
commit 23ebe5710c

View file

@ -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);
}
}
}