Fix build

Change-Id: Idd7ae84c0d128bd40f0e7a83882e4ed4181e8a4d
This commit is contained in:
Alan Viverette
2014-10-17 11:36:38 -07:00
parent 2f68a204b2
commit 721fc2adf4

View File

@@ -1006,7 +1006,7 @@ public class ViewDebug {
}
final ArrayList<Field> declaredFields = new ArrayList();
klass.getDeclaredFields(false, declaredFields);
klass.getDeclaredFieldsUnchecked(false, declaredFields);
final ArrayList<Field> foundFields = new ArrayList<Field>();
final int count = declaredFields.size();
@@ -1049,7 +1049,7 @@ public class ViewDebug {
}
final ArrayList<Method> declaredMethods = new ArrayList();
klass.getDeclaredMethods(false, declaredMethods);
klass.getDeclaredMethodsUnchecked(false, declaredMethods);
final ArrayList<Method> foundMethods = new ArrayList<Method>();
final int count = declaredMethods.size();