Skip to content

Commit

Permalink
Issue #614: Suppress UseOfSystemOutOrSystemErr IDEA violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyom-Yadav authored and nrmancuso committed Aug 28, 2022
1 parent 36e4ee6 commit 57494e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ private Main() {
* Entry point.
*
* @param args command line arguments.
* @noinspection UseOfSystemOutOrSystemErr
* @noinspectionreason UseOfSystemOutOrSystemErr - used for CLI output
*/
public static void main(String... args) {
int errorCounter;
Expand Down Expand Up @@ -122,6 +124,8 @@ private static Result runGithubNotesBuilder(CliOptions cliOptions)
* Prints a list of elements in standard out.
*
* @param entities a list.
* @noinspection UseOfSystemOutOrSystemErr
* @noinspectionreason UseOfSystemOutOrSystemErr - used for CLI output
*/
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,8 @@ 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
* @noinspectionreason UseOfSystemOutOrSystemErr - used for CLI output
*/
public static Result buildResult(String localRepoPath, String authToken, String remoteRepoPath,
String startRef, String endRef) throws IOException,
Expand Down

0 comments on commit 57494e4

Please sign in to comment.