aboutsummaryrefslogtreecommitdiff
path: root/javatests/dagger/internal/codegen/goldens/ComponentProcessorTest_transitiveModuleDeps_DEFAULT_MODE_test.DaggerTestComponent
diff options
context:
space:
mode:
Diffstat (limited to 'javatests/dagger/internal/codegen/goldens/ComponentProcessorTest_transitiveModuleDeps_DEFAULT_MODE_test.DaggerTestComponent')
-rw-r--r--javatests/dagger/internal/codegen/goldens/ComponentProcessorTest_transitiveModuleDeps_DEFAULT_MODE_test.DaggerTestComponent58
1 files changed, 2 insertions, 56 deletions
diff --git a/javatests/dagger/internal/codegen/goldens/ComponentProcessorTest_transitiveModuleDeps_DEFAULT_MODE_test.DaggerTestComponent b/javatests/dagger/internal/codegen/goldens/ComponentProcessorTest_transitiveModuleDeps_DEFAULT_MODE_test.DaggerTestComponent
index ec93b6ca0..7b077e72b 100644
--- a/javatests/dagger/internal/codegen/goldens/ComponentProcessorTest_transitiveModuleDeps_DEFAULT_MODE_test.DaggerTestComponent
+++ b/javatests/dagger/internal/codegen/goldens/ComponentProcessorTest_transitiveModuleDeps_DEFAULT_MODE_test.DaggerTestComponent
@@ -1,7 +1,6 @@
package test;
import dagger.internal.DaggerGenerated;
-import dagger.internal.Preconditions;
import javax.annotation.processing.Generated;
@DaggerGenerated
@@ -13,7 +12,8 @@ import javax.annotation.processing.Generated;
"unchecked",
"rawtypes",
"KotlinInternal",
- "KotlinInternalInJava"
+ "KotlinInternalInJava",
+ "cast"
})
final class DaggerTestComponent {
private DaggerTestComponent() {
@@ -31,60 +31,6 @@ final class DaggerTestComponent {
private Builder() {
}
- /**
- * @deprecated This module is declared, but an instance is not used in the component. This method is a no-op. For more, see https://dagger.dev/unused-modules.
- */
- @Deprecated
- public Builder testModule(TestModule testModule) {
- Preconditions.checkNotNull(testModule);
- return this;
- }
-
- /**
- * @deprecated This module is declared, but an instance is not used in the component. This method is a no-op. For more, see https://dagger.dev/unused-modules.
- */
- @Deprecated
- public Builder parentTestIncluded(ParentTestIncluded parentTestIncluded) {
- Preconditions.checkNotNull(parentTestIncluded);
- return this;
- }
-
- /**
- * @deprecated This module is declared, but an instance is not used in the component. This method is a no-op. For more, see https://dagger.dev/unused-modules.
- */
- @Deprecated
- public Builder alwaysIncluded(AlwaysIncluded alwaysIncluded) {
- Preconditions.checkNotNull(alwaysIncluded);
- return this;
- }
-
- /**
- * @deprecated This module is declared, but an instance is not used in the component. This method is a no-op. For more, see https://dagger.dev/unused-modules.
- */
- @Deprecated
- public Builder depModule(DepModule depModule) {
- Preconditions.checkNotNull(depModule);
- return this;
- }
-
- /**
- * @deprecated This module is declared, but an instance is not used in the component. This method is a no-op. For more, see https://dagger.dev/unused-modules.
- */
- @Deprecated
- public Builder parentDepIncluded(ParentDepIncluded parentDepIncluded) {
- Preconditions.checkNotNull(parentDepIncluded);
- return this;
- }
-
- /**
- * @deprecated This module is declared, but an instance is not used in the component. This method is a no-op. For more, see https://dagger.dev/unused-modules.
- */
- @Deprecated
- public Builder refByDep(RefByDep refByDep) {
- Preconditions.checkNotNull(refByDep);
- return this;
- }
-
public TestComponent build() {
return new TestComponentImpl();
}