Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationInlineImageCache.java +2 −2 Original line number Diff line number Diff line Loading @@ -87,8 +87,8 @@ public class NotificationInlineImageCache implements NotificationInlineImageReso try { drawable = mResolver.resolveImage(target); } catch (IOException ex) { Log.d(TAG, "PreloadImageTask: Resolve failed from " + target); } catch (IOException | SecurityException ex) { Log.d(TAG, "PreloadImageTask: Resolve failed from " + target, ex); } return drawable; Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationInlineImageResolver.java +2 −2 Original line number Diff line number Diff line Loading @@ -81,8 +81,8 @@ public class NotificationInlineImageResolver implements ImageResolver { Drawable result = null; try { result = hasCache() ? mImageCache.get(uri) : resolveImage(uri); } catch (IOException ex) { Log.d(TAG, "loadImage: Can't load image from " + uri); } catch (IOException | SecurityException ex) { Log.d(TAG, "loadImage: Can't load image from " + uri, ex); } return result; } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationInlineImageCache.java +2 −2 Original line number Diff line number Diff line Loading @@ -87,8 +87,8 @@ public class NotificationInlineImageCache implements NotificationInlineImageReso try { drawable = mResolver.resolveImage(target); } catch (IOException ex) { Log.d(TAG, "PreloadImageTask: Resolve failed from " + target); } catch (IOException | SecurityException ex) { Log.d(TAG, "PreloadImageTask: Resolve failed from " + target, ex); } return drawable; Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationInlineImageResolver.java +2 −2 Original line number Diff line number Diff line Loading @@ -81,8 +81,8 @@ public class NotificationInlineImageResolver implements ImageResolver { Drawable result = null; try { result = hasCache() ? mImageCache.get(uri) : resolveImage(uri); } catch (IOException ex) { Log.d(TAG, "loadImage: Can't load image from " + uri); } catch (IOException | SecurityException ex) { Log.d(TAG, "loadImage: Can't load image from " + uri, ex); } return result; } Loading