diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-03-30 08:58:13 +0800 |
---|---|---|
committer | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-03-30 08:58:13 +0800 |
commit | 814861d9a0b4d093c482e3338453771423dcd7f0 (patch) | |
tree | 43e89976aab51601e3c889883ab8d0bfdb620c22 /holmes-actions/src | |
parent | d7cc33ca9d96dc4548f67c6a4b759f3ce1df70aa (diff) |
Fixed Some Typos
Change-Id: I2af156597c515144ac4f60a23b07576989ce74c4
Issue-ID: HOLMES-106
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'holmes-actions/src')
-rw-r--r-- | holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java b/holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java index 54c5e7d..8b88fd2 100644 --- a/holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java +++ b/holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java @@ -193,7 +193,7 @@ public class HttpsUtils { HttpEntity resEntity = httpResponse.getEntity(); result = EntityUtils.toString(resEntity); } else { - throw new CorrelationException("Get a error status from server : " + statusCode); + throw new CorrelationException("Get an error status from server : " + statusCode); } } return result; |