(Exception ex)
| 61 | final CompletedCallback wrapper = new CompletedCallback() { |
| 62 | boolean reported; |
| 63 | @Override |
| 64 | public void onCompleted(Exception ex) { |
| 65 | if (reported) |
| 66 | return; |
| 67 | reported = true; |
| 68 | callback.onCompleted(ex); |
| 69 | } |
| 70 | }; |
| 71 | |
| 72 | final WritableCallback cb = new WritableCallback() { |
nothing calls this directly
no test coverage detected