public boolean checkUnderInvestigation()

in src/main/java/jetbrains/buildServer/investigationsAutoAssigner/utils/InvestigationsManager.java [32:39]


  public boolean checkUnderInvestigation(@NotNull final SProject project,
                                         @NotNull final SBuild sBuild,
                                         @NotNull final BuildProblem problem) {
    for (BuildProblemResponsibilityEntry entry : problem.getAllResponsibilities()) {
      if (isActiveOrAlreadyFixed(sBuild, entry) && belongsToSameProjectOrParent(entry.getProject(), project)) return true;
    }
    return false;
  }