Drive-by: remove redundant null check.

This commit is contained in:
Ray J. Greenwell
2026-03-02 21:40:24 -08:00
parent fbf3238f80
commit 3b0af94757
@@ -437,7 +437,7 @@ public class DObject
for (Object sub : _subs) { for (Object sub : _subs) {
try { try {
if (sub != null && sub instanceof ProxySubscriber) { if (sub instanceof ProxySubscriber) {
((ProxySubscriber)sub).eventReceived(event); ((ProxySubscriber)sub).eventReceived(event);
} }
} catch (Exception e) { } catch (Exception e) {