Updated Javadocs. Renamed TypeToken to TypeLiteral. Hid ConfigurationException from the public API.
git-svn-id: https://google-guice.googlecode.com/svn/trunk@43 d779f126-a31b-0410-b53b-1d3aecad763e
diff --git a/test/com/google/inject/GenericInjectionTest.java b/test/com/google/inject/GenericInjectionTest.java
index d75ec90..43b0233 100644
--- a/test/com/google/inject/GenericInjectionTest.java
+++ b/test/com/google/inject/GenericInjectionTest.java
@@ -15,7 +15,7 @@
public void testGenericInjection() {
List<String> names = Arrays.asList("foo", "bar", "bob");
ContainerBuilder builder = new ContainerBuilder();
- builder.bind(new TypeToken<List<String>>() {}).to(names);
+ builder.bind(new TypeLiteral<List<String>>() {}).to(names);
Container container = builder.create(false);
Foo foo = container.getCreator(Foo.class).get();
assertEquals(names, foo.names);