aboutsummaryrefslogtreecommitdiff
path: root/examples/src/example/xml/FlashMemory.java
blob: 14294f440155a7855da6ae5859b141837c266c9a (plain)
1
2
3
4
5
6
7
8
9
10
package example.xml;

import java.util.Collections;

public class FlashMemory implements Contacts {

  public Iterable<Contact> findByName(String name) {
    return Collections.emptyList();
  }
}