Skip to content

Commit 5a7e574

Browse files
committed
Make classes inaccessible.
1 parent eb5b8e9 commit 5a7e574

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/jenkins/plugins/git/forensics/blame/GitBlamer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
// TODO: Check if we should also create new Jenkins users
4444
// TODO: Blame needs only run for new warnings
4545
@SuppressFBWarnings(value = "SE", justification = "GitClient implementation is Serializable")
46-
public class GitBlamer extends Blamer {
46+
class GitBlamer extends Blamer {
4747
private static final long serialVersionUID = -619059996626444900L;
4848

4949
static final String NO_HEAD_ERROR = "Could not retrieve HEAD commit, aborting";
@@ -61,7 +61,7 @@ public class GitBlamer extends Blamer {
6161
* @param gitCommit
6262
* content of environment variable GIT_COMMIT
6363
*/
64-
public GitBlamer(final GitClient git, final String gitCommit) {
64+
GitBlamer(final GitClient git, final String gitCommit) {
6565
super();
6666

6767
workspace = git.getWorkTree();

0 commit comments

Comments
 (0)