Description
if (path.nameEquals("**")) { return true; } else { return specialFields.contains(path.getAsNamePart()); }
LGTM and IntelliJ both say that NamePart type does not match the type stored in specialFields collection.
if (path.nameEquals("**")) { return true; } else { return specialFields.contains(path.getAsNamePart()); }
LGTM and IntelliJ both say that NamePart type does not match the type stored in specialFields collection.