fix error prone error
Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
parent
bd0b440da9
commit
0b13e6cddd
|
@ -606,7 +606,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
||||||
{
|
{
|
||||||
String displayName = getDisplayName();
|
String displayName = getDisplayName();
|
||||||
if (displayName == null)
|
if (displayName == null)
|
||||||
displayName = "WebApp@"+connectors.hashCode();
|
displayName = "WebApp@"+Arrays.hashCode(connectors);
|
||||||
|
|
||||||
LOG.info(displayName + " at http://" + connectors[i].toString() + getContextPath());
|
LOG.info(displayName + " at http://" + connectors[i].toString() + getContextPath());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue