File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
src/main/java/org/eolang/lints Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 3030import org .cactoos .iterable .Joined ;
3131import org .cactoos .iterable .Shuffled ;
3232import org .eolang .lints .comments .LtAsciiOnly ;
33- import org .eolang .lints .misc .LtTestNotVerb ;
3433
3534/**
3635 * Collection of lints for individual XML files, provided
3938 * <p>This class is thread-safe.</p>
4039 *
4140 * @since 0.23
41+ * @todo #297:35min Return `LtTestNotVerb` back.
42+ * For some reason this lint produces errors in EO-to-Java Compiler. Check
43+ * <a href="https://github.com/objectionary/lints/issues/297#issuecomment-2636540673">this</a>
44+ * issue for more details. We should return it in the fixed state, once we understand
45+ * the root cause of the problem.
4246 */
4347@ ThreadSafe
4448final class PkMono extends IterableEnvelope <Lint <XML >> {
@@ -52,8 +56,7 @@ final class PkMono extends IterableEnvelope<Lint<XML>> {
5256 new Joined <Lint <XML >>(
5357 new PkByXsl (),
5458 Arrays .asList (
55- new LtAsciiOnly (),
56- new LtTestNotVerb ()
59+ new LtAsciiOnly ()
5760 )
5861 )
5962 )
You can’t perform that action at this time.
0 commit comments