From 3aaff80f3232aa4d7aba826a5ad9edd95bc45c65 Mon Sep 17 00:00:00 2001 From: Doris Liu Date: Thu, 4 Feb 2016 20:02:52 +0000 Subject: [PATCH] Revert "Fix NPE for invalid target exception" This reverts commit d4fda02dd59adff9553dca5647ebb6c023145d5f. Change-Id: I73341dc41c7effaa3209107b4e85503b17e2c826 --- .../android/graphics/drawable/AnimatedVectorDrawable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphics/java/android/graphics/drawable/AnimatedVectorDrawable.java b/graphics/java/android/graphics/drawable/AnimatedVectorDrawable.java index 21ed7dd0099e0..0a3e27e94c064 100644 --- a/graphics/java/android/graphics/drawable/AnimatedVectorDrawable.java +++ b/graphics/java/android/graphics/drawable/AnimatedVectorDrawable.java @@ -852,8 +852,8 @@ public class AnimatedVectorDrawable extends Drawable implements Animatable2 { (VectorDrawable.VectorDrawableState) target, startTime); } else { // Should never get here - throw new UnsupportedOperationException("Target should be group, path or vector. " + - target == null ? "Null target" : target.getClass() + " is not supported"); + throw new UnsupportedOperationException("Target should be either VGroup, VPath, " + + "or ConstantState, " + target.getClass() + " is not supported"); } }