aboutsummaryrefslogtreecommitdiff
path: root/core/test/com/google/inject/BoundInstanceInjectionTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/test/com/google/inject/BoundInstanceInjectionTest.java')
-rw-r--r--core/test/com/google/inject/BoundInstanceInjectionTest.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/core/test/com/google/inject/BoundInstanceInjectionTest.java b/core/test/com/google/inject/BoundInstanceInjectionTest.java
index 1826baf7..59fe8b24 100644
--- a/core/test/com/google/inject/BoundInstanceInjectionTest.java
+++ b/core/test/com/google/inject/BoundInstanceInjectionTest.java
@@ -16,15 +16,18 @@
package com.google.inject;
-import com.google.inject.name.Named;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
-import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
-import java.lang.annotation.Target;
+
+import com.google.inject.name.Named;
+
import junit.framework.TestCase;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
/**
* @author crazybob@google.com (Bob Lee)
*/