We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdccce5 commit 8e45380Copy full SHA for 8e45380
1 file changed
base/src/main/java/com/smartdevicelink/managers/screen/BaseSoftButtonManager.java
@@ -223,8 +223,10 @@ public void dispose() {
223
softButtonCapabilities = null;
224
225
// Cancel the operations
226
- transactionQueue.close();
227
- transactionQueue = null;
+ if (transactionQueue != null) {
+ transactionQueue.close();
228
+ transactionQueue = null;
229
+ }
230
231
// Remove listeners
232
internalInterface.removeOnRPCNotificationListener(FunctionID.ON_HMI_STATUS, onHMIStatusListener);
0 commit comments