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 b6c0ae7 commit 90764ceCopy full SHA for 90764ce
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