We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0eac91 commit e8ea382Copy full SHA for e8ea382
FCL/src/main/java/com/tungsten/fcl/ui/InstallerItem.java
@@ -290,7 +290,10 @@ public void onClick(View view) {
290
}
291
292
if (view == remove) {
293
- installerItem.removeAction.get().run();
+ Runnable runnable = installerItem.removeAction.get();
294
+ if (runnable != null) {
295
+ runnable.run();
296
+ }
297
298
299
0 commit comments