(Context context, String body)
| 2673 | } |
| 2674 | |
| 2675 | static String getFullText(Context context, String body) { |
| 2676 | try { |
| 2677 | if (body == null) |
| 2678 | return null; |
| 2679 | Document d = JsoupEx.parse(body); |
| 2680 | return _getText(context, d); |
| 2681 | } catch (OutOfMemoryError ex) { |
| 2682 | Log.e(ex); |
| 2683 | return null; |
| 2684 | } |
| 2685 | } |
| 2686 | |
| 2687 | static String getFullText(Context context, File file) throws IOException { |
| 2688 | try { |
no test coverage detected