aboutsummaryrefslogtreecommitdiff
path: root/core/test/com/google/inject/MethodInterceptionTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/test/com/google/inject/MethodInterceptionTest.java')
-rw-r--r--core/test/com/google/inject/MethodInterceptionTest.java13
1 files changed, 8 insertions, 5 deletions
diff --git a/core/test/com/google/inject/MethodInterceptionTest.java b/core/test/com/google/inject/MethodInterceptionTest.java
index e81faee8..6d6d5961 100644
--- a/core/test/com/google/inject/MethodInterceptionTest.java
+++ b/core/test/com/google/inject/MethodInterceptionTest.java
@@ -16,23 +16,26 @@
package com.google.inject;
+import static com.google.inject.matcher.Matchers.only;
+
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;
import com.google.inject.matcher.AbstractMatcher;
import com.google.inject.matcher.Matchers;
-import static com.google.inject.matcher.Matchers.only;
import com.google.inject.spi.ConstructorBinding;
+
+import junit.framework.TestCase;
+
+import org.aopalliance.intercept.MethodInterceptor;
+import org.aopalliance.intercept.MethodInvocation;
+
import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference;
-import junit.framework.TestCase;
-
-import org.aopalliance.intercept.MethodInterceptor;
-import org.aopalliance.intercept.MethodInvocation;
/**
* @author jessewilson@google.com (Jesse Wilson)