()
| 71 | |
| 72 | Helper.getParallelExecutor().submit(new Runnable() { |
| 73 | @Override |
| 74 | public void run() { |
| 75 | try { |
| 76 | DB db = DB.getInstance(context); |
| 77 | db.answer().applyAnswer(answer.id, new Date().getTime()); |
| 78 | } catch (Throwable ex) { |
| 79 | Log.e(ex); |
| 80 | } |
| 81 | } |
| 82 | }); |
| 83 | |
| 84 | String html = answer.getData(context, null).getHtml(); |
nothing calls this directly
no test coverage detected