Appears toggle for MRN in toggle ui 01/60301/2
authorsiddharth0905 <siddharth.singh4@amdocs.com>
Mon, 13 Aug 2018 13:15:20 +0000 (18:45 +0530)
committerAvi Gaffa <avi.gaffa@amdocs.com>
Mon, 13 Aug 2018 14:15:29 +0000 (14:15 +0000)
Appears toggle for MRN in toggle ui

Change-Id: I67c9996f256009245a810f359fc5dc2b243d7ec1
Issue-ID: SDC-1642
Signed-off-by: siddharth0905 <siddharth.singh4@amdocs.com>
openecomp-be/lib/openecomp-common-lib/src/main/java/org/openecomp/sdc/common/togglz/ToggleableFeature.java

index 4eaa8c8..ab261c9 100644 (file)
@@ -6,13 +6,10 @@ import org.togglz.core.context.FeatureContext;
 
 public enum ToggleableFeature implements Feature {
 
-  @Label(("MRN"))
-  MRN,
-  
-  @Label("Fabric Configuration")
-  FABRIC_CONFIGURATION;
+    @Label("Fabric Configuration")
+    FABRIC_CONFIGURATION;
 
-  public boolean isActive() {
-    return FeatureContext.getFeatureManager().isActive(this);
-  }
+    public boolean isActive() {
+        return FeatureContext.getFeatureManager().isActive(this);
+    }
 }