We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a68ef commit 5c10bf7Copy full SHA for 5c10bf7
opengrok-indexer/src/main/java/org/opengrok/indexer/history/SCCSHistoryParser.java
@@ -249,11 +249,11 @@ private int read() throws java.io.IOException {
249
return -1;
250
}
251
252
- protected static File getSCCSFile(File file) {
+ private static File getSCCSFile(File file) {
253
return getSCCSFile(file.getParent(), file.getName());
254
255
256
- protected static File getSCCSFile(String parent, String name) {
+ static File getSCCSFile(String parent, String name) {
257
File f = new File(parent + "/SCCS/s." + name);
258
if (!f.exists()) {
259
return null;
0 commit comments