Adding back-end support for UI filters
[aai/sparky-be.git] / src / test / java / org / onap / aai / sparky / dal / elasticsearch / entity / ElasticSearchAggegrationResponse.java
index 6dd2d11..4306f6b 100644 (file)
@@ -45,7 +45,7 @@ public class ElasticSearchAggegrationResponse {
 
   public ElasticSearchAggegrationResponse() {
     this.shards = new HashMap<String, String>();
-    this.aggregations = new HashMap<String,ElasticSearchAggregation>();
+    this.aggregations = new HashMap<String, ElasticSearchAggregation>();
   }
 
 
@@ -89,7 +89,7 @@ public class ElasticSearchAggegrationResponse {
   }
 
   public void addShard(String key, String value) {
-    this.shards.put(key,value);
+    this.shards.put(key, value);
   }