mirror of
https://github.com/google/guice.git
synced 2024-04-21 12:32:36 +00:00
git-svn-id: https://google-guice.googlecode.com/svn/trunk@831 d779f126-a31b-0410-b53b-1d3aecad763e
11 lines
196 B
Java
11 lines
196 B
Java
package example.xml;
|
|
|
|
import java.util.Collections;
|
|
|
|
public class FlashMemory implements Contacts {
|
|
|
|
public Iterable<Contact> findByName(String name) {
|
|
return Collections.emptyList();
|
|
}
|
|
}
|