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