diff options
| author | 2018-03-16 10:58:24 +0000 | |
|---|---|---|
| committer | 2018-03-16 10:58:24 +0000 | |
| commit | e54c8ce806677cee48dcf9e33bb9f2d09ad70206 (patch) | |
| tree | fac3614dbca1a10ecb334f5442620f8af3601e1b /test/616-cha-unloading/src/AbstractCHATester.java | |
| parent | babfd0d4bd974aa23c8b6bb6b4698572e2e36d97 (diff) | |
| parent | ab2ce84d4995f05c38c5ebfefc6683b244a36260 (diff) | |
Merge "Fix dangling SingleImplementations left after class unloading" into pi-dev
Diffstat (limited to 'test/616-cha-unloading/src/AbstractCHATester.java')
| -rw-r--r-- | test/616-cha-unloading/src/AbstractCHATester.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/616-cha-unloading/src/AbstractCHATester.java b/test/616-cha-unloading/src/AbstractCHATester.java new file mode 100644 index 0000000000..e11094584a --- /dev/null +++ b/test/616-cha-unloading/src/AbstractCHATester.java @@ -0,0 +1,19 @@ +/* + * Copyright (C) 2018 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. + */ + +public abstract class AbstractCHATester { + public abstract void lonelyMethod(); +} |