aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java_tools/junitrunner/java/com/google/testing/junit/runner/internal/Stderr.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java_tools/junitrunner/java/com/google/testing/junit/runner/internal/Stderr.java')
-rw-r--r--src/java_tools/junitrunner/java/com/google/testing/junit/runner/internal/Stderr.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/java_tools/junitrunner/java/com/google/testing/junit/runner/internal/Stderr.java b/src/java_tools/junitrunner/java/com/google/testing/junit/runner/internal/Stderr.java
index 80b37eb0d0..d7c7db9bf6 100644
--- a/src/java_tools/junitrunner/java/com/google/testing/junit/runner/internal/Stderr.java
+++ b/src/java_tools/junitrunner/java/com/google/testing/junit/runner/internal/Stderr.java
@@ -14,18 +14,18 @@
package com.google.testing.junit.runner.internal;
-import com.google.inject.BindingAnnotation;
-
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
+import javax.inject.Qualifier;
+
/**
* Binding annotation for a {@link java.io.PrintStream} printing to stderr.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, ElementType.METHOD})
-@BindingAnnotation
+@Qualifier
public @interface Stderr {
}