Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan E. Cook2016-05-17 20:59:40 +0000
committerAngel Avila2016-05-17 20:59:40 +0000
commit692d03cd692ee24251a043017520b9ff870846fe (patch)
treefb00f77155d39a2f985aea04b91095ad94a96617 /plugins/org.eclipse.osee.ote.messaging.dds
parentb7c6c777bd6a51b8b9066ec8aac517c8a08db7f3 (diff)
downloadorg.eclipse.osee-692d03cd692ee24251a043017520b9ff870846fe.tar.gz
org.eclipse.osee-692d03cd692ee24251a043017520b9ff870846fe.tar.xz
org.eclipse.osee-692d03cd692ee24251a043017520b9ff870846fe.zip
refactor[ats_ATS284247]: Remove redundant null checks
Signed-off-by: Morgan E. Cook <Morgan.e.cook@boeing.com> Change-Id: Ic0b70768a7da7cece5a8a0b4c5746654add26193
Diffstat (limited to 'plugins/org.eclipse.osee.ote.messaging.dds')
-rw-r--r--plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/entity/DomainParticipant.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/entity/DomainParticipant.java b/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/entity/DomainParticipant.java
index 4968e9515f3..8b44be408ec 100644
--- a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/entity/DomainParticipant.java
+++ b/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/entity/DomainParticipant.java
@@ -559,7 +559,7 @@ public class DomainParticipant extends Entity implements EntityFactory {
}
- if (writer == null || writer != null && writer.isPublishBackToLocalDDSReaders()) {
+ if (writer != null && writer.isPublishBackToLocalDDSReaders()) {
// Notify all of the subscribers in our domain
for (Subscriber domainSubscribers : subscribers) {
domainSubscribers.processNewData(dataStoreItem);

Back to the top