summaryrefslogtreecommitdiff
path: root/test/MultiDexModifiedSecondary
diff options
context:
space:
mode:
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.";
}
}