We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 682092e commit 40ce64cCopy full SHA for 40ce64c
hub/src/main/java/cloud/katta/core/DeviceSetupCallbackFactory.java
@@ -43,10 +43,10 @@ public DeviceSetupCallback create(final Controller controller) {
43
/**
44
* @return Firs tLogin Device Setup Callback instance for the current platform.
45
*/
46
- public static synchronized DeviceSetupCallback get() {
+ public static synchronized DeviceSetupCallback get(final Controller controller) {
47
if(null == singleton) {
48
singleton = new DeviceSetupCallbackFactory();
49
}
50
- return singleton.create();
+ return singleton.create(controller);
51
52
0 commit comments