Remove one target short-circuiting for hint providers

This commit is contained in:
BoykoAlex
2017-06-29 16:53:11 -04:00
parent 904ac28c73
commit 9c390eae37
4 changed files with 0 additions and 4 deletions

View File

@@ -49,7 +49,6 @@ public class ManifestYamlCFBuildpacksProvider extends AbstractCFHintsProvider {
hints.add(hint);
}
}
return hints;
}
}
// Contract for the reconciler: return null if values cannot be

View File

@@ -46,7 +46,6 @@ public class ManifestYamlCFDomainsProvider extends AbstractCFHintsProvider {
hints.add(hint);
}
}
return hints;
}
}
// Contract for the reconciler: return null if values cannot be

View File

@@ -52,7 +52,6 @@ public class ManifestYamlCFServicesProvider extends AbstractCFHintsProvider {
hints.add(hint);
}
}
return hints;
}
}

View File

@@ -55,7 +55,6 @@ public class ManifestYamlStacksProvider extends AbstractCFHintsProvider {
hints.add(hint);
}
}
return hints;
}
}