We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2584b38 commit e7efb79Copy full SHA for e7efb79
samples/java/demo/app/controllers/Application.java
@@ -35,15 +35,15 @@
35
*/
36
public class Application extends Controller {
37
public static Logger.ALogger logger = Logger.of("application.controllers.Application");
38
- private RuntimeEnvironment env;
+ private RuntimeEnvironment<DemoUser> env;
39
40
/**
41
* A constructor needed to get a hold of the environment instance.
42
* This could be injected using a DI framework instead too.
43
*
44
* @param env
45
46
- public Application(RuntimeEnvironment env) {
+ public Application(RuntimeEnvironment<DemoUser> env) {
47
this.env = env;
48
}
49
0 commit comments