diff options
author | 2019-01-22 18:52:32 +0000 | |
---|---|---|
committer | 2019-01-22 18:52:32 +0000 | |
commit | d6ac89166652a7ac7ecf3ee25477a970e3bcd482 (patch) | |
tree | 7c1f45e789626a5876941574d5fe257cd26ab5dc /src/main | |
parent | 2006bedb6a0cf54d6031a3a390defc4a851b53f1 (diff) | |
parent | 0d4410aba3986ea3f0736c1fda77b4d909346c0d (diff) |
Merge "MrTopicConnection.java-fixed string comparion"
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/onap/dmaap/dbcapi/client/MrTopicConnection.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dmaap/dbcapi/client/MrTopicConnection.java b/src/main/java/org/onap/dmaap/dbcapi/client/MrTopicConnection.java index 492037c..a92dbc7 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/client/MrTopicConnection.java +++ b/src/main/java/org/onap/dmaap/dbcapi/client/MrTopicConnection.java @@ -3,6 +3,8 @@ * org.onap.dmaap * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -63,7 +65,7 @@ public class MrTopicConnection extends BaseLoggingClass { topicURL = cluster.getTopicProtocol() + "://" + fqdn + ":" + cluster.getTopicPort() + "/events/" + topic ; - if ( cluster.getTopicProtocol().equals( "https")) { + if ( "https".equals(cluster.getTopicProtocol())) { return makeSecureConnection( topicURL ); } return makeConnection( topicURL ); |