diff options
-rw-r--r-- | core/java/android/view/ViewDebug.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/java/android/view/ViewDebug.java b/core/java/android/view/ViewDebug.java index 0b15ba7..4d9a8cc 100644 --- a/core/java/android/view/ViewDebug.java +++ b/core/java/android/view/ViewDebug.java @@ -1107,8 +1107,7 @@ public class ViewDebug { exportUnrolledArray(context, out, property, array, valuePrefix, suffix); - // Probably want to return here, same as for fields. - return; + continue; } else if (!returnType.isPrimitive()) { if (property.deepExport()) { dumpViewProperties(context, methodValue, out, prefix + property.prefix()); @@ -1187,8 +1186,7 @@ public class ViewDebug { exportUnrolledArray(context, out, property, array, valuePrefix, suffix); - // We exit here! - return; + continue; } else if (!type.isPrimitive()) { if (property.deepExport()) { dumpViewProperties(context, field.get(view), out, prefix + |