private void ensureSameUsers()

in src/main/java/jetbrains/buildServer/investigationsAutoAssigner/heuristics/BrokenFileHeuristic.java [121:128]


  private void ensureSameUsers(@Nullable Pair<User, String> foundBrokenFile,
                               @Nullable final Pair<User, String> broken) {
    if (foundBrokenFile != null &&
        broken != null &&
        !foundBrokenFile.first.equals(broken.first)) {
      throw new HeuristicNotApplicableException("there are more then one TeamCity user");
    }
  }