Adding back-end support for UI filters
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / security / portal / config / RolesConfig.java
index 4bab100..3ec866e 100644 (file)
@@ -79,10 +79,9 @@ public class RolesConfig {
   }
 
   private void load() throws JsonSyntaxException, IOException, URISyntaxException {
-    Type collectionType = new TypeToken<List<EcompRole>>() {
-    }.getType();
+    Type collectionType = new TypeToken<List<EcompRole>>() {}.getType();
 
     roles = Collections.unmodifiableList(GSON
         .fromJson(new String(Files.readAllBytes(Paths.get(ROLES_CONFIG_FILE))), collectionType));
   }
-}
\ No newline at end of file
+}