Merge "GitHook: make fields outputStream and errorStream private"

This commit is contained in:
Christian Halstrick 2021-02-09 02:07:53 -05:00 committed by Gerrit Code Review @ Eclipse.org
commit fe4b2a4656
1 changed files with 2 additions and 2 deletions

View File

@ -44,12 +44,12 @@ abstract class GitHook<T> implements Callable<T> {
/**
* The output stream to be used by the hook.
*/
protected final PrintStream outputStream;
private final PrintStream outputStream;
/**
* The error stream to be used by the hook.
*/
protected final PrintStream errorStream;
private final PrintStream errorStream;
/**
* Constructor for GitHook.