aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/it/functional-tests/target/generated-sources/annotations/test/builder/product/ProductTwo_Factory.java
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/src/it/functional-tests/target/generated-sources/annotations/test/builder/product/ProductTwo_Factory.java')
-rw-r--r--compiler/src/it/functional-tests/target/generated-sources/annotations/test/builder/product/ProductTwo_Factory.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/compiler/src/it/functional-tests/target/generated-sources/annotations/test/builder/product/ProductTwo_Factory.java b/compiler/src/it/functional-tests/target/generated-sources/annotations/test/builder/product/ProductTwo_Factory.java
deleted file mode 100644
index dca46d756..000000000
--- a/compiler/src/it/functional-tests/target/generated-sources/annotations/test/builder/product/ProductTwo_Factory.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package test.builder.product;
-
-import dagger.internal.Factory;
-import javax.annotation.Generated;
-
-@Generated("dagger.internal.codegen.ComponentProcessor")
-public enum ProductTwo_Factory implements Factory<ProductTwo> {
-INSTANCE;
-
- @Override
- public ProductTwo get() {
- return new ProductTwo();
- }
-
- public static Factory<ProductTwo> create() {
- return INSTANCE;
- }
-}
-