()
| 207 | final File dir = Helper.ensureExists(context, type); |
| 208 | Helper.getParallelExecutor().submit(new Runnable() { |
| 209 | @Override |
| 210 | public void run() { |
| 211 | try { |
| 212 | File[] favicons = dir.listFiles(); |
| 213 | if (favicons != null) |
| 214 | for (File favicon : favicons) |
| 215 | Helper.secureDelete(favicon); |
| 216 | } catch (Throwable ex) { |
| 217 | Log.w(ex); |
| 218 | } |
| 219 | } |
| 220 | }); |
| 221 | } |
| 222 | } |
nothing calls this directly
no test coverage detected