private InspectionSeverityValues convertLevel()

in fxcop-agent/src/jetbrains/buildServer/fxcop/agent/FxCopFileProcessor.java [242:252]


  private InspectionSeverityValues convertLevel(String level) {
    if (level.contains("Error")) {
      return InspectionSeverityValues.ERROR;
    }

    if (level.contains("Warning")) {
      return InspectionSeverityValues.WARNING;
    }

    return InspectionSeverityValues.INFO;
  }