Skip to content

Commit

Permalink
Merge pull request #312 from h1alexbel/297-disable
Browse files Browse the repository at this point in the history
bug(#297): remove `LtTestNotVerb` from PkMono
  • Loading branch information
yegor256 authored Feb 5, 2025
2 parents 25d8b03 + 5988c04 commit ba8e371
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/main/java/org/eolang/lints/PkMono.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import org.cactoos.iterable.Joined;
import org.cactoos.iterable.Shuffled;
import org.eolang.lints.comments.LtAsciiOnly;
import org.eolang.lints.misc.LtTestNotVerb;

/**
* Collection of lints for individual XML files, provided
Expand All @@ -39,6 +38,11 @@
* <p>This class is thread-safe.</p>
*
* @since 0.23
* @todo #297:35min Return `LtTestNotVerb` back.
* For some reason this lint produces errors in EO-to-Java Compiler. Check
* <a href="https://github.com/objectionary/lints/issues/297#issuecomment-2636540673">this</a>
* issue for more details. We should return it in the fixed state, once we understand
* the root cause of the problem.
*/
@ThreadSafe
final class PkMono extends IterableEnvelope<Lint<XML>> {
Expand All @@ -52,8 +56,7 @@ final class PkMono extends IterableEnvelope<Lint<XML>> {
new Joined<Lint<XML>>(
new PkByXsl(),
Arrays.asList(
new LtAsciiOnly(),
new LtTestNotVerb()
new LtAsciiOnly()
)
)
)
Expand Down

1 comment on commit ba8e371

@0pdd
Copy link

@0pdd 0pdd commented on ba8e371 Feb 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 297-589ae9b7 discovered in src/main/java/org/eolang/lints/PkMono.java) and submitted as #313. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.