Merge "RecoverySystem: Enable the package compatibility verification." into oc-dev

am: a532f4d7f8

Change-Id: Ia44184bcefda25a8cbf362d4b911713669bace32
This commit is contained in:
Tao Bao
2017-04-19 16:38:58 +00:00
committed by android-build-merger

View File

@@ -353,9 +353,7 @@ public class RecoverySystem {
if (list.isEmpty()) {
throw new IOException("no entries found in the compatibility file");
}
// TODO(b/36814503): Enable the actual verification when VintfObject APIs are ready.
// return (VintfObject.verify(list.toArray(new String[list.size()])) == 0);
return true;
return (VintfObject.verify(list.toArray(new String[list.size()])) == 0);
}
/**