blob: 71cf39bd9b50295074b87f13079629e910c3f903 [file] [log] [blame]
package example.xml;
import java.util.Collections;
public class SimCard implements Contacts {
public Iterable<Contact> findByName(String name) {
return Collections.emptyList();
}
}