Skip to content

Commit 5c10bf7

Browse files
committed
reduce visibility of methods
1 parent a5a68ef commit 5c10bf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/SCCSHistoryParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,11 +249,11 @@ private int read() throws java.io.IOException {
249249
return -1;
250250
}
251251

252-
protected static File getSCCSFile(File file) {
252+
private static File getSCCSFile(File file) {
253253
return getSCCSFile(file.getParent(), file.getName());
254254
}
255255

256-
protected static File getSCCSFile(String parent, String name) {
256+
static File getSCCSFile(String parent, String name) {
257257
File f = new File(parent + "/SCCS/s." + name);
258258
if (!f.exists()) {
259259
return null;

0 commit comments

Comments
 (0)