Skip to content

Commit ba8e371

Browse files
authored
Merge pull request #312 from h1alexbel/297-disable
bug(#297): remove `LtTestNotVerb` from PkMono
2 parents 25d8b03 + 5988c04 commit ba8e371

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/main/java/org/eolang/lints/PkMono.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
import org.cactoos.iterable.Joined;
3131
import org.cactoos.iterable.Shuffled;
3232
import org.eolang.lints.comments.LtAsciiOnly;
33-
import org.eolang.lints.misc.LtTestNotVerb;
3433

3534
/**
3635
* Collection of lints for individual XML files, provided
@@ -39,6 +38,11 @@
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
4448
final 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
)

0 commit comments

Comments
 (0)