diff options
author | 2023-11-16 15:41:46 +0000 | |
---|---|---|
committer | 2023-11-17 17:48:26 +0000 | |
commit | 5424283b62c436dbb67b665992454a1dc8061953 (patch) | |
tree | cc1d3ff83d02222468e919c13507cb14ea12565f /test/MultiDexModifiedSecondary | |
parent | 5a3271d7caafefd10a20f5a5db09d2c178838b76 (diff) |
Revert^2 "Add support for dex containers (DEX v41)."
This reverts commit a3b8c73d8ae9943c8aaabf49349302b4c05cea71.
Reason for revert: Reland
Test: ./art/test.py -b --host --optimizing --64
Test: device boots with container dex enabled for framework
Test: tests pass with compax dex re-enabled
Change-Id: I100a796f5105c351a531a45dcbea8b0245f598a8
Diffstat (limited to 'test/MultiDexModifiedSecondary')
-rw-r--r-- | test/MultiDexModifiedSecondary/Second.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/MultiDexModifiedSecondary/Second.java b/test/MultiDexModifiedSecondary/Second.java index 3555a7ff36..08ad625bf0 100644 --- a/test/MultiDexModifiedSecondary/Second.java +++ b/test/MultiDexModifiedSecondary/Second.java @@ -15,11 +15,7 @@ */ class Second { - public String getThird() { - return "I Third That."; - } - public String getSecond() { - return "I Second That."; + return "Modified"; // Must have the same length as original so that dex size is same. } } |