Commit c4f8a6d9 by TJBChris

Type mismatch fix - missed it with the test.

parent 4978a9be
...@@ -130,7 +130,7 @@ public class MetadataDiscoveryResource { ...@@ -130,7 +130,7 @@ public class MetadataDiscoveryResource {
// Parent JSON Object // Parent JSON Object
JSONObject response = new JSONObject(); JSONObject response = new JSONObject();
Map<String, HashMap<String, Map<String, String>>> resultMap = discoveryService.relationshipWalk(guid, depth, edgesToFollow); Map<String, HashMap<String, JSONObject>> resultMap = discoveryService.relationshipWalk(guid, depth, edgesToFollow);
try { try {
response.put("requestId", Thread.currentThread().getName()); response.put("requestId", Thread.currentThread().getName());
...@@ -170,7 +170,7 @@ public class MetadataDiscoveryResource { ...@@ -170,7 +170,7 @@ public class MetadataDiscoveryResource {
// Parent JSON Object // Parent JSON Object
JSONObject response = new JSONObject(); JSONObject response = new JSONObject();
Map<String, HashMap<String, Map<String, String>>> resultMap = discoveryService.textSearch(searchText, depth, prop); Map<String, HashMap<String, JSONObject>> resultMap = discoveryService.textSearch(searchText, depth, prop);
try { try {
response.put("requestId", Thread.currentThread().getName()); response.put("requestId", Thread.currentThread().getName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment