Gregory Kick

Results 2 issues of Gregory Kick

The following does not produce a compilation error: ``` @Module(injects = Foo.class) public class TestModule {} ``` and ``` public class Foo {} ``` but throws the following exception at...

Say I have: ``` final class Foo {} ``` And a module that looks like the following: ``` @Module(injects = Foo.class) final class FooModule { @Provides Foo provideFoo() { return...