()
| 412 | if (bimi) |
| 413 | futures.add(Helper.getDownloadTaskExecutor().submit(new Callable<Favicon>() { |
| 414 | @Override |
| 415 | public Favicon call() throws Exception { |
| 416 | Pair<Bitmap, Boolean> bimi = |
| 417 | Bimi.get(context, domain, selector, scaleToPixels); |
| 418 | return (bimi == null ? null : new Favicon(bimi.first, "vmc", bimi.second)); |
| 419 | } |
| 420 | })); |
| 421 | |
| 422 | String email = info.email.toLowerCase(Locale.ROOT); |
nothing calls this directly
no test coverage detected