From ff5f90a78c6a05d6542d3235372c8de5aa4299b2 Mon Sep 17 00:00:00 2001
From: ramanjaneya <ramanjaneya.palleti@huawei.com>
Date: Thu, 28 Sep 2017 08:04:23 +0530
Subject: Reorder the modifiers and Removed unused imports

Change-Id: I9a2f1cf6ece783e64a31ac5927d234981e0f0461
Issue-Id:SO-118
Signed-off-by: ramanjaneya <ramanjaneya.palleti@huawei.com>
---
 status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'status-control/src/main/java')

diff --git a/status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java b/status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java
index b098a8c852..62ce791f40 100644
--- a/status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java
+++ b/status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java
@@ -39,7 +39,7 @@ import javax.ws.rs.core.Response;
 public class HealthCheckUtils {
 
     private static MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.GENERAL);
-    private final static String MSO_PROP_TOPOLOGY = "MSO_PROP_TOPOLOGY";
+    private static final String MSO_PROP_TOPOLOGY = "MSO_PROP_TOPOLOGY";
     private static MsoPropertiesFactory msoPropertiesFactory = new MsoPropertiesFactory();
     private static final String CHECK_HTML = "<!DOCTYPE html><html><head><meta charset=\"ISO-8859-1\"><title>Health Check</title></head><body>Application ready</body></html>";
     private static final String NOT_FOUND = "<!DOCTYPE html><html><head><meta charset=\"ISO-8859-1\"><title>Application Not Started</title></head><body>Application not started. Properties file missing or invalid or database Connection failed</body></html>";
@@ -289,4 +289,4 @@ public class HealthCheckUtils {
             return "http://" + ip + ":" + port + url;
         }
     }
-}
\ No newline at end of file
+}
-- 
cgit