am 0cf789fc: am 2a964260: am fbdf212c: Merge "Changed flow in export methods to continue through the loop if it encounters an int[] return type." into lmp-dev
* commit '0cf789fc2f081f79079700eee8eef648248f291e': Changed flow in export methods to continue through the loop if it encounters an int[] return type.
This commit is contained in:
@@ -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 +
|
||||
|
||||
Reference in New Issue
Block a user