aboutsummaryrefslogtreecommitdiff
path: root/javatests/dagger/internal/codegen/goldens/ModuleFactoryGeneratorTest_proxyMethodsConflictWithOtherFactoryMethods_test.TestModule_GetFactory
blob: 7d9d3c5ca6ee386315aba7eeaf1475ad1b73982c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package test;

import dagger.internal.DaggerGenerated;
import dagger.internal.Factory;
import dagger.internal.QualifierMetadata;
import dagger.internal.ScopeMetadata;
import javax.annotation.processing.Generated;

@ScopeMetadata
@QualifierMetadata
@DaggerGenerated
@Generated(
    value = "dagger.internal.codegen.ComponentProcessor",
    comments = "https://dagger.dev"
)
@SuppressWarnings({
    "unchecked",
    "rawtypes",
    "KotlinInternal",
    "KotlinInternalInJava"
})
public final class TestModule_GetFactory implements Factory<Integer> {
  @Override
  public Integer get() {
    return proxyGet();
  }

  public static TestModule_GetFactory create() {
    return InstanceHolder.INSTANCE;
  }

  public static int proxyGet() {
    return TestModule.get();
  }

  private static final class InstanceHolder {
    private static final TestModule_GetFactory INSTANCE = new TestModule_GetFactory();
  }
}