Skip to content

Commit

Permalink
bugfix: Fix infinite recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Jul 28, 2023
1 parent 72a858a commit f6861cc
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,17 @@ final class BloopAnalysisCallback(
severity: Severity,
reported: Boolean
): Unit = {
problem(category, pos, msg, severity, reported)
problem2(
category,
pos,
msg,
severity,
reported,
rendered = ju.Optional.empty(),
diagnosticCode = ju.Optional.empty(),
diagnosticRelatedInformation = Nil.asJava,
actions = Nil.asJava
)
}

def classDependency(
Expand Down

0 comments on commit f6861cc

Please sign in to comment.