mirror of https://github.com/apache/lucene.git
SOLR-11584: remove zero-width space (U+200B) that causes compilation to fail on some platforms
This commit is contained in:
parent
df70e27d7d
commit
aef58a26a2
|
@ -344,7 +344,7 @@ public class CheckLinksAndAnchors { // TODO: rename this class now that it does
|
|||
final String debug = "'tab-pane" + (pane.id().isEmpty() ? "" : "#" + pane.id()) + "'";
|
||||
|
||||
// no 'active' class on any tab-pane
|
||||
if (pane.classNames().contains("active")) {
|
||||
if (pane.classNames().contains("active")) {
|
||||
System.err.println(file + " contains " + debug + " with 'active' defined -- this must be removed");
|
||||
problems++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue