diff options
| author | 2017-01-10 09:00:28 +0000 | |
|---|---|---|
| committer | 2017-01-10 09:00:29 +0000 | |
| commit | c38c429ef1246a7abcfa88dafb6325e06a934b2b (patch) | |
| tree | 2fa31602bc18dd28fa9f036d5345e3da7575979e /test/921-hello-failure/src/Transform2.java | |
| parent | a82de09e6d1d54ec7381efdf226a289a1ff0504d (diff) | |
| parent | f9d41c1d269f3031c0a89e34fc4a04303e186958 (diff) | |
Merge "Revert "Add basic checks for redefinition.""
Diffstat (limited to 'test/921-hello-failure/src/Transform2.java')
| -rw-r--r-- | test/921-hello-failure/src/Transform2.java | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/test/921-hello-failure/src/Transform2.java b/test/921-hello-failure/src/Transform2.java deleted file mode 100644 index 9d949f323f..0000000000 --- a/test/921-hello-failure/src/Transform2.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (C) 2017 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 Transform2 implements Iface1, Iface2 { - public void sayHi(String name) { - System.out.println("hello2 - " + name); - } -} |