diff options
| author | Richard Uhler <ruhler@google.com> | 2015-05-18 15:18:55 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-05-18 15:18:56 +0000 |
| commit | ce70082da8a4e63c280c2f049a67b38acc82ee1a (patch) | |
| tree | e8f0f86b7b138fa44f16fb2fc3245acd94a93663 /test/MultiDexModifiedSecondary/Second.java | |
| parent | 6650075fb831379d24cfafc3d56442e742418688 (diff) | |
| parent | a5a1c13a74225a1db3c54dc108fcd161b867bb00 (diff) | |
Merge "Test and fix bug checking status of secondary multidex files." into mnc-dev
Diffstat (limited to 'test/MultiDexModifiedSecondary/Second.java')
| -rw-r--r-- | test/MultiDexModifiedSecondary/Second.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/MultiDexModifiedSecondary/Second.java b/test/MultiDexModifiedSecondary/Second.java new file mode 100644 index 00000000000..3555a7ff368 --- /dev/null +++ b/test/MultiDexModifiedSecondary/Second.java @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +class Second { + public String getThird() { + return "I Third That."; + } + + public String getSecond() { + return "I Second That."; + } +} |
