()
| 60 | private final AbstractModule singletonsModule = |
| 61 | new AbstractModule() { |
| 62 | @Override |
| 63 | protected void configure() { |
| 64 | bind(BoundAsSingleton.class).in(Scopes.SINGLETON); |
| 65 | bind(AnnotatedSingleton.class); |
| 66 | bind(EagerSingleton.class).asEagerSingleton(); |
| 67 | bind(LinkedSingleton.class).to(RealLinkedSingleton.class); |
| 68 | bind(DependsOnJustInTimeSingleton.class); |
| 69 | bind(NotASingleton.class); |
| 70 | bind(ImplementedBySingleton.class).in(Scopes.SINGLETON); |
| 71 | bind(ProvidedBySingleton.class).in(Scopes.SINGLETON); |
| 72 | bind(ProvidedByAnnotatedSingleton.class); |
| 73 | } |
| 74 | }; |
| 75 | |
| 76 | @Override |
nothing calls this directly
no test coverage detected