Skip to content

Commit a9097eb

Browse files
committed
fix formatting
1 parent 661ec1b commit a9097eb

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

kubernetes/charts/src/test/java/oracle/kubernetes/operator/helm/ProcessedChart.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,12 @@ List<Map<String, String>> getDocuments(String kind) throws Exception {
9292

9393
private List<Map<String, String>> getDocuments() throws Exception {
9494
List<Map<String, String>> charts = new ArrayList<>();
95-
new Yaml().loadAll(getProcess().getInputStream()).forEach(
96-
(document) -> {
97-
if (document != null) charts.add((Map<String, String>) document);
98-
});
95+
new Yaml()
96+
.loadAll(getProcess().getInputStream())
97+
.forEach(
98+
(document) -> {
99+
if (document != null) charts.add((Map<String, String>) document);
100+
});
99101

100102
return charts;
101103
}

0 commit comments

Comments
 (0)