Merge remote-tracking branch 'origin/jetty-9.4.x' into jetty-9.4.x-3681-HttpFieldsOptimize
This commit is contained in:
commit
2d358cd4b3
|
@ -47,7 +47,7 @@ public class ServletPathSpec extends PathSpec
|
|||
assertValidServletPathSpec(servletPathSpec);
|
||||
|
||||
// The Root Path Spec
|
||||
if (servletPathSpec.length() == 0)
|
||||
if (servletPathSpec.isEmpty())
|
||||
{
|
||||
super.pathSpec = "";
|
||||
super.pathDepth = -1; // force this to be at the end of the sort order
|
||||
|
|
|
@ -725,7 +725,7 @@ public class SessionHandler extends ScopedHandler
|
|||
if (isUsingCookies())
|
||||
{
|
||||
String sessionPath = (_cookieConfig.getPath()==null) ? contextPath : _cookieConfig.getPath();
|
||||
sessionPath = (sessionPath==null||sessionPath.length()==0) ? "/" : sessionPath;
|
||||
sessionPath = (sessionPath==null||sessionPath.isEmpty()) ? "/" : sessionPath;
|
||||
String id = getExtendedId(session);
|
||||
HttpCookie cookie = null;
|
||||
if (_sessionComment == null)
|
||||
|
|
|
@ -628,7 +628,7 @@ public class ServletHandler extends ScopedHandler
|
|||
FilterChain chain = null;
|
||||
if (_filterChainsCached)
|
||||
{
|
||||
if (filters.size() > 0)
|
||||
if (!filters.isEmpty())
|
||||
chain = newCachedChain(filters, servletHolder);
|
||||
|
||||
final Map<String,FilterChain> cache=_chainCache[dispatch];
|
||||
|
@ -652,7 +652,7 @@ public class ServletHandler extends ScopedHandler
|
|||
cache.put(key,chain);
|
||||
lru.add(key);
|
||||
}
|
||||
else if (filters.size() > 0)
|
||||
else if (!filters.isEmpty())
|
||||
chain = new Chain(baseRequest,filters, servletHolder);
|
||||
|
||||
return chain;
|
||||
|
@ -1567,7 +1567,7 @@ public class ServletHandler extends ScopedHandler
|
|||
*/
|
||||
protected CachedChain(List<FilterHolder> filters, ServletHolder servletHolder)
|
||||
{
|
||||
if (filters.size()>0)
|
||||
if (!filters.isEmpty())
|
||||
{
|
||||
_filterHolder=filters.get(0);
|
||||
filters.remove(0);
|
||||
|
|
|
@ -183,8 +183,8 @@ public class PushCacheFilter implements Filter
|
|||
port = request.isSecure() ? 443 : 80;
|
||||
}
|
||||
|
||||
boolean referredFromHere = _hosts.size() > 0 ? _hosts.contains(host) : host.equals(request.getServerName());
|
||||
referredFromHere &= _ports.size() > 0 ? _ports.contains(port) : port == request.getServerPort();
|
||||
boolean referredFromHere = !_hosts.isEmpty()? _hosts.contains(host) : host.equals(request.getServerName());
|
||||
referredFromHere &= !_ports.isEmpty()? _ports.contains(port) : port == request.getServerPort();
|
||||
|
||||
if (referredFromHere)
|
||||
{
|
||||
|
|
|
@ -865,7 +865,7 @@ public class StartArgs
|
|||
|
||||
public boolean hasJvmArgs()
|
||||
{
|
||||
return jvmArgs.size() > 0;
|
||||
return !jvmArgs.isEmpty();
|
||||
}
|
||||
|
||||
public boolean hasSystemProperties()
|
||||
|
|
|
@ -249,7 +249,7 @@ public class JSON
|
|||
try
|
||||
{
|
||||
buffer.append('"');
|
||||
if (input != null && input.length() > 0)
|
||||
if (input != null && !input.isEmpty())
|
||||
{
|
||||
escapeString(buffer, input);
|
||||
}
|
||||
|
|
|
@ -1025,10 +1025,10 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
throws Exception
|
||||
{
|
||||
//if the configuration instances have been set explicitly, use them
|
||||
if (_configurations.size()>0)
|
||||
if (!_configurations.isEmpty())
|
||||
return;
|
||||
|
||||
if (_configurationClasses.size()==0) {
|
||||
if (_configurationClasses.isEmpty()) {
|
||||
_configurationClasses.addAll(Configuration.ClassList.serverDefault(getServer()));
|
||||
}
|
||||
for (String configClass : _configurationClasses)
|
||||
|
|
|
@ -133,7 +133,7 @@ public class ChatServlet extends HttpServlet
|
|||
synchronized (member)
|
||||
{
|
||||
LOG.debug("Queue size: {}", member._queue.size());
|
||||
if (member._queue.size() > 0)
|
||||
if (!member._queue.isEmpty())
|
||||
{
|
||||
sendSingleMessage(response, member);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue