Skip to content

Commit

Permalink
[CI] Refactoring for consistency in code style
Browse files Browse the repository at this point in the history
  • Loading branch information
zakkak committed Mar 7, 2024
1 parent 084e189 commit a324b18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/quarkus-ecosystem-issue.java
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ private String getJobsLogs(GHWorkflowJob job, String... filters) {
return fullContent;
}

private static InputStreamFunction<String> getLogArchiveInputStreamFunction(String... filters) {
return (is) -> {
private static InputStreamFunction<String> getLogArchiveInputStreamFunction(String... filters) {
return (is) -> {
StringBuilder stringBuilder = new StringBuilder();
try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(is))) {
String line;
Expand All @@ -351,8 +351,8 @@ private static InputStreamFunction<String> getLogArchiveInputStreamFunction(Stri
}
}
return stringBuilder.toString();
};
}
};
}

private static boolean isOpen(GHIssue issue) {
return (issue.getState() == GHIssueState.OPEN);
Expand Down

0 comments on commit a324b18

Please sign in to comment.