Fixed NPE in request mapping hover provider

This commit is contained in:
nsingh
2017-10-16 16:19:14 -07:00
parent c6aa4a2b98
commit 023e623f02

View File

@@ -211,7 +211,7 @@ public class RequestMappingHoverProvider implements HoverProvider {
}
return jsonKey.contains(mappingPath);
return mappingPath != null ? jsonKey.contains(mappingPath) : false;
}
public JSONObject[] getRequestMappingsFromProcesses(SpringBootApp[] runningApps) {