diff options
author | varun gudisena <varuneshwar.gudisena@att.com> | 2019-01-22 18:50:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-22 18:50:08 +0000 |
commit | 83680b266e5edea3487d1b662af4f3f1466a1013 (patch) | |
tree | df1d70946a842dc8a06b2772e4f61c07f7acb2de /src/main/java/org | |
parent | 1683994d9aa50a907010191b8ede7064b1c72cb2 (diff) | |
parent | b0cb63ff265902fe0b0af89c56b6b2223bb8623d (diff) |
Merge "DR_SubService-Fixed String comparison"
Diffstat (limited to 'src/main/java/org')
-rw-r--r-- | src/main/java/org/onap/dmaap/dbcapi/service/DR_SubService.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dmaap/dbcapi/service/DR_SubService.java b/src/main/java/org/onap/dmaap/dbcapi/service/DR_SubService.java index d6012a7..2fd75d0 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/service/DR_SubService.java +++ b/src/main/java/org/onap/dmaap/dbcapi/service/DR_SubService.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. @@ -94,7 +96,7 @@ public class DR_SubService extends BaseLoggingClass { prov = new DrProvConnection(); prov.makeSubPostConnection( provURL ); String resp = prov.doPostDr_Sub( sub, apiError ); - if ( unit_test.equals( "Yes" ) ) { + if ( "Yes".equals(unit_test) ) { resp = simulateResp( sub, "POST" ); apiError.setCode(200); } |