mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Refactoring
This commit is contained in:
parent
9393944ea2
commit
6e7f91dfd7
1 changed files with 2 additions and 2 deletions
|
@ -973,8 +973,8 @@ public class HtmlHelper {
|
|||
switch (selector.getSelectorType()) {
|
||||
case Selector.SAC_ELEMENT_NODE_SELECTOR:
|
||||
ElementSelectorImpl eselector = (ElementSelectorImpl) selector;
|
||||
if (tag == null ?
|
||||
eselector.getLocalName() == null
|
||||
if (tag == null
|
||||
? eselector.getLocalName() == null
|
||||
: tag.equals(eselector.getLocalName()))
|
||||
style = mergeStyles(style, srule.getStyle().getCssText());
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue