diff options
author | Christian Halstrick <christian.halstrick@sap.com> | 2021-02-09 02:07:53 -0500 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | 2021-02-09 02:07:53 -0500 |
commit | fe4b2a46563ec2006106ee2318dbf27dfcdef3c5 (patch) | |
tree | 73f67a356df81c198c759174c32d56607f5eb91e | |
parent | 6d462e5fe95e20245656aaac4ead6f4c48e319d5 (diff) | |
parent | 686565f416752db9b89902aa20609c0b99d1a40d (diff) | |
download | jgit-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.java | 4 |
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. |