diff options
author | Surendra Reddy Katam <SK00524980@techmahindra.com> | 2018-03-28 15:40:56 +0530 |
---|---|---|
committer | Surendra Reddy Katam <SK00524980@techmahindra.com> | 2018-03-28 15:40:56 +0530 |
commit | 4314eea96946e72d296fca500b4a17168af58caf (patch) | |
tree | c466f18465c9e88949a06f46f93f126ac5c2fd4c /src/main | |
parent | 10502fb34bfe050bb8400d009bdf1cc42f4ab106 (diff) |
Sonar major issues
Use isEmpty() to check whether the collection is empty or not
Sonar Link:
https://sonar.onap.org/project/issues?assignees=surendraReddy&id=org.onap.dmaap.messagerouter.dmaapclient%3AdmaapClient&open=AV4-MbQb32hFUzlqc5Zm&resolved=false&severities=MAJOR
Location:
src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java
Line No-322
Change-Id: Ifa4a91a303f49be0c264a9af2498bf70b8056168
Issue-ID: DMAAP-361
Signed-off-by: Surendra Reddy Katam <SK00524980@techmahindra.com>
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java b/src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java index 4701a1f..cf42907 100644 --- a/src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java +++ b/src/main/java/com/att/nsa/mr/client/impl/MRBatchPublisher.java @@ -319,7 +319,7 @@ public class MRBatchPublisher implements MRBatchingPublisher fReadLock.lock (); try { - if ( fNextBatch.size () > 0 ) + if ( fNextBatch.isEmpty() ) { final long nowMs = System.currentTimeMillis (); shouldSend = ( force || fNextBatch.size() >= fMaxBatchSize ); |