Minor refactoring reading from RM tuple

This commit is contained in:
nsingh
2018-11-08 16:18:28 -08:00
parent b41cd42741
commit 907fa1ff33

View File

@@ -182,8 +182,8 @@ public class RequestMappingHoverProvider implements HoverProvider {
SpringBootApp app = mappingMethod.getT2();
String contextPath = app.getContextPath();
String port = mappingMethod.getT2().getPort();
String host = mappingMethod.getT2().getHost();
String port = app.getPort();
String host = app.getHost();
String[] paths = mappingMethod.getT1().getSplitPath();
if (paths==null || paths.length==0) {