Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug(#297): remove LtTestNotVerb from PkMono #312

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading