forked from I2P_Developers/i2p.i2p
* Replace size() <= 0 with isEmpty() everywhere, ditto > 0 -> !isEmpty()
This commit is contained in:
@@ -1301,7 +1301,7 @@ public class HttpContext extends Container
|
||||
|
||||
List scss= _constraintMap.getMatches(pathInContext);
|
||||
String pattern=null;
|
||||
if (scss != null && scss.size() > 0)
|
||||
if (scss != null && !scss.isEmpty())
|
||||
{
|
||||
Object constraints= null;
|
||||
|
||||
|
Reference in New Issue
Block a user