We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It looks like there is a clash between the management of the redirection of the IO
test-runner/src/main/java/eu/stamp_project/testrunner/EntryPoint.java
Lines 750 to 769 in adb1c99
The condition EntryPoint.verbose && EntryPoint.outPrintStream != null is checked twice and has two different bodies.
EntryPoint.verbose && EntryPoint.outPrintStream != null
pb.redirectOutput(Redirect.PIPE); pb.redirectError(Redirect.PIPE);
vs
inheritIO(process.getInputStream(), EntryPoint.outPrintStream); inheritIO(process.getErrorStream(), EntryPoint.outPrintStream);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It looks like there is a clash between the management of the redirection of the IO
test-runner/src/main/java/eu/stamp_project/testrunner/EntryPoint.java
Lines 750 to 769 in adb1c99
The condition
EntryPoint.verbose && EntryPoint.outPrintStream != null
is checked twice and has two different bodies.vs
The text was updated successfully, but these errors were encountered: