(boolean selfChange, Uri uri)
| 1032 | if (Helper.hasPermission(context, Manifest.permission.READ_CONTACTS)) { |
| 1033 | ContentObserver observer = new ContentObserver(ApplicationEx.getMainHandler()) { |
| 1034 | @Override |
| 1035 | public void onChange(boolean selfChange, Uri uri) { |
| 1036 | EntityLog.log(context, EntityLog.Type.Notification, "Contact changed uri=" + uri); |
| 1037 | Helper.getSerialExecutor().submit(new Runnable() { |
| 1038 | @Override |
| 1039 | public void run() { |
| 1040 | try { |
| 1041 | emailLookup = getEmailLookup(context); |
| 1042 | } catch (Throwable ex) { |
| 1043 | Log.e(ex); |
| 1044 | } |
| 1045 | } |
| 1046 | }); |
| 1047 | } |
| 1048 | }; |
| 1049 | |
| 1050 | Helper.getSerialExecutor().submit(new Runnable() { |
nothing calls this directly
no test coverage detected