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 e4aa1de commit 86faf40Copy full SHA for 86faf40
helpstack/src/com/tenmiles/helpstack/logic/HSSource.java
@@ -83,14 +83,13 @@ public static HSSource getInstance(Context context) {
83
Log.d(TAG, "New Instance");
84
singletonInstance = new HSSource(
85
context.getApplicationContext()); // 3
86
- }
87
-
88
- // Can be called even before a gear is set
89
- if (singletonInstance.gear == null) {
90
- singletonInstance.setGear(HSHelpStack.getInstance(context).getGear());
91
+ }
92
}
93
+ // Can be called even before a gear is set
+ if (singletonInstance.gear == null) {
+ singletonInstance.setGear(HSHelpStack.getInstance(context).getGear());
94
return singletonInstance;
95
96
0 commit comments