aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Halstrick <christian.halstrick@sap.com>2021-02-09 02:07:53 -0500
committerGerrit Code Review @ Eclipse.org <gerrit@eclipse.org>2021-02-09 02:07:53 -0500
commitfe4b2a46563ec2006106ee2318dbf27dfcdef3c5 (patch)
tree73f67a356df81c198c759174c32d56607f5eb91e
parent6d462e5fe95e20245656aaac4ead6f4c48e319d5 (diff)
parent686565f416752db9b89902aa20609c0b99d1a40d (diff)
downloadjgit-fe4b2a46563ec2006106ee2318dbf27dfcdef3c5.tar.gz
jgit-fe4b2a46563ec2006106ee2318dbf27dfcdef3c5.zip
Merge "GitHook: make fields outputStream and errorStream private"
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/hooks/GitHook.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/hooks/GitHook.java b/org.eclipse.jgit/src/org/eclipse/jgit/hooks/GitHook.java
index 4059b16b39..53f4819d34 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/hooks/GitHook.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/hooks/GitHook.java
@@ -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.