优化一些布尔判断语法
This commit is contained in:
@ -332,7 +332,7 @@ public final class HTMLFilter
|
||||
final String name = m.group(1).toLowerCase();
|
||||
if (allowed(name))
|
||||
{
|
||||
if (false == inArray(name, vSelfClosingTags))
|
||||
if (!inArray(name, vSelfClosingTags))
|
||||
{
|
||||
if (vTagCounts.containsKey(name))
|
||||
{
|
||||
|
Reference in New Issue
Block a user