-
```
What steps will reproduce the problem?
1. Make any changes to your gin module or rename a module (in hosted mode)
2. Press refresh
What is the expected output? What do you see instead?
Expecting …
-
```
I'm defining a module with:
@Provides
@Singleton
UserService provideUserService() {
return UserServiceFactory.getUserService();
}
and when I compile with GWT I get this NPE:
[ERROR] …
-
```
I'm trying to reuse a GinModule on the server side where Guice is used. For
that I am using the install( new GinModuleAdapter( new MyGinModule());
This seems to have impact on other bindings tha…
-
```
What steps will reproduce the problem?
1. Make any changes to your gin module or rename a module (in hosted mode)
2. Press refresh
What is the expected output? What do you see instead?
Expecting …
-
```
What steps will reproduce the problem?
1. Make any changes to your gin module or rename a module (in hosted mode)
2. Press refresh
What is the expected output? What do you see instead?
Expecting …
-
```
What steps will reproduce the problem?
1. Make any changes to your gin module or rename a module (in hosted mode)
2. Press refresh
What is the expected output? What do you see instead?
Expecting …
-
```
What steps will reproduce the problem?
According to the Guice injection points document at:
https://github.com/google/guice/wiki/InjectionPoints
injection methods of super classes are called befo…
-
```
What steps will reproduce the problem?
According to the Guice injection points document at:
https://github.com/google/guice/wiki/InjectionPoints
injection methods of super classes are called befo…
-
```
I'm defining a module with:
@Provides
@Singleton
UserService provideUserService() {
return UserServiceFactory.getUserService();
}
and when I compile with GWT I get this NPE:
[ERROR] …
-
```
This is the specific example that bit us. There may be a more general case to
be found.
The visibility modifiers (or lack thereof) on A and B are important.
---
package x;
public class A {
…