1ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes/*
2ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * Copyright (C) 2013 The Android Open Source Project
3ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes *
4ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
5ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * you may not use this file except in compliance with the License.
6ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * You may obtain a copy of the License at
7ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes *
8ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
9ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes *
10ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * Unless required by applicable law or agreed to in writing, software
11ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
12ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * See the License for the specific language governing permissions and
14ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * limitations under the License.
15ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes */
16ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes
17ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughespackage libcore.java.util;
18ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes
19ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes/**
20ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * Ideally, this would have been an inner class in ServiceLoaderTest, but we need a corresponding
21ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes * resource file, and our build system can't cope with $ in filenames.
22ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes */
23ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughespublic interface ServiceLoaderTestInterfaceWrongType {
24ea1caf4ccc5c2255f384c0774aa9e055763a6a41Elliott Hughes}
25