summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/java/android/os/RecoverySystem.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/java/android/os/RecoverySystem.java b/core/java/android/os/RecoverySystem.java
index bb0fdbe4e26a..447f2805d075 100644
--- a/core/java/android/os/RecoverySystem.java
+++ b/core/java/android/os/RecoverySystem.java
@@ -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);
}
/**