protected GateReport addNotBuiltGateDocumentationToReport(Gate gate) {
   GateReport gateReport = gate.createEmptyGateReport();
   qualityLineReport.addGateReport(gateReport);
   return gateReport;
 }
 protected GateReport executeGateAndAddToReport(
     AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener, Gate gate) {
   GateReport gateReport = gate.evaluate(build, launcher, listener);
   qualityLineReport.addGateReport(gateReport);
   return gateReport;
 }