(Context context, Intent data, InputStream is, OutputStream os)
| 51 | private static final long KEY_TIMEOUT = 250L; |
| 52 | |
| 53 | static Intent execute(Context context, Intent data, InputStream is, OutputStream os) { |
| 54 | return execute(context, data, is, os, CONNECT_TIMEOUT); |
| 55 | } |
| 56 | |
| 57 | static Intent execute(Context context, Intent data, InputStream is, OutputStream os, long timeout) { |
| 58 | OpenPgpServiceConnection pgpService = null; |
no test coverage detected