Skip to content

Commit

Permalink
Issue checkstyle#614: Suppress UseOfSystemOutOrSystemErr IDEA violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyom-Yadav committed Aug 26, 2022
1 parent d9d70be commit 12ab1c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ private Main() {
* Entry point.
*
* @param args command line arguments.
* @noinspection UseOfSystemOutOrSystemErr
*/
public static void main(String... args) {
int errorCounter;
Expand Down Expand Up @@ -122,6 +123,7 @@ private static Result runGithubNotesBuilder(CliOptions cliOptions)
* Prints a list of elements in standard out.
*
* @param entities a list.
* @noinspection UseOfSystemOutOrSystemErr
*/
private static void printListOf(List<String> entities) {
System.out.println();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ private NotesBuilder() {
* @return a map which represents release notes.
* @throws IOException if an I/O error occurs.
* @throws GitAPIException if an error occurs when accessing Git API.
* @noinspection UseOfSystemOutOrSystemErr
*/
public static Result buildResult(String localRepoPath, String authToken, String remoteRepoPath,
String startRef, String endRef) throws IOException,
Expand Down

0 comments on commit 12ab1c3

Please sign in to comment.