aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/it/functional-tests/target/generated-sources/annotations/test/sub/OtherThing_Factory.java
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/src/it/functional-tests/target/generated-sources/annotations/test/sub/OtherThing_Factory.java')
-rw-r--r--compiler/src/it/functional-tests/target/generated-sources/annotations/test/sub/OtherThing_Factory.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/compiler/src/it/functional-tests/target/generated-sources/annotations/test/sub/OtherThing_Factory.java b/compiler/src/it/functional-tests/target/generated-sources/annotations/test/sub/OtherThing_Factory.java
deleted file mode 100644
index 8d844fb07..000000000
--- a/compiler/src/it/functional-tests/target/generated-sources/annotations/test/sub/OtherThing_Factory.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package test.sub;
-
-import dagger.internal.Factory;
-import javax.annotation.Generated;
-import javax.inject.Provider;
-
-@Generated("dagger.internal.codegen.ComponentProcessor")
-public final class OtherThing_Factory implements Factory<OtherThing> {
- private final Provider<Integer> iProvider;
-
- public OtherThing_Factory(Provider<Integer> iProvider) {
- assert iProvider != null;
- this.iProvider = iProvider;
- }
-
- @Override
- public OtherThing get() {
- return new OtherThing(iProvider.get());
- }
-
- public static Factory<OtherThing> create(Provider<Integer> iProvider) {
- return new OtherThing_Factory(iProvider);
- }
-}
-