Drive-by: remove redundant null check.
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user