summaryrefslogtreecommitdiff
path: root/test/MultiDexModifiedSecondary
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2023-11-15 15:54:38 +0000
committer David Srbecky <dsrbecky@google.com> 2023-11-15 17:44:24 +0000
commita3b8c73d8ae9943c8aaabf49349302b4c05cea71 (patch)
treeaa76c4da3da5364939c1536bfb394d4f5b9845ba /test/MultiDexModifiedSecondary
parent5668bf62c6029b9539297a50e61a2a91d651143f (diff)
Revert "Add support for dex containers (DEX v41)."
This reverts commit 854b363b284592d0bbfdbe31eb487fa64a4b9471. Reason for revert: PlayStore Scanner failures Change-Id: I7807aba1bfe1f662129f90c870c82427ca6d121f
Diffstat (limited to 'test/MultiDexModifiedSecondary')
-rw-r--r--test/MultiDexModifiedSecondary/Second.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/MultiDexModifiedSecondary/Second.java b/test/MultiDexModifiedSecondary/Second.java
index 08ad625bf0..3555a7ff36 100644
--- a/test/MultiDexModifiedSecondary/Second.java
+++ b/test/MultiDexModifiedSecondary/Second.java
@@ -15,7 +15,11 @@
*/
class Second {
+ public String getThird() {
+ return "I Third That.";
+ }
+
public String getSecond() {
- return "Modified"; // Must have the same length as original so that dex size is same.
+ return "I Second That.";
}
}