diff options
author | 2023-11-15 15:54:38 +0000 | |
---|---|---|
committer | 2023-11-15 17:44:24 +0000 | |
commit | a3b8c73d8ae9943c8aaabf49349302b4c05cea71 (patch) | |
tree | aa76c4da3da5364939c1536bfb394d4f5b9845ba /test/MultiDex/Second.java | |
parent | 5668bf62c6029b9539297a50e61a2a91d651143f (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/MultiDex/Second.java')
-rw-r--r-- | test/MultiDex/Second.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/MultiDex/Second.java b/test/MultiDex/Second.java index ec8849a402..5067bcc2e8 100644 --- a/test/MultiDex/Second.java +++ b/test/MultiDex/Second.java @@ -16,6 +16,12 @@ class Second { public String getSecond() { - return "Original"; + return "I Second That."; + } + + // This method makes sure the second dex file has quickening + // instructions. + public String callSecond() { + return getSecond(); } } |