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 4004612 commit d8cbc72Copy full SHA for d8cbc72
opengrok-indexer/src/main/java/org/opengrok/indexer/history/SCCSHistoryParser.java
@@ -31,6 +31,8 @@
31
import java.text.ParseException;
32
import java.util.ArrayList;
33
import java.util.Date;
34
+
35
+import org.jetbrains.annotations.Nullable;
36
import org.opengrok.indexer.util.IOUtils;
37
38
/**
@@ -254,6 +256,7 @@ private static File getSCCSFile(File file) {
254
256
return getSCCSFile(file.getParent(), file.getName());
255
257
}
258
259
+ @Nullable
260
static File getSCCSFile(String parent, String name) {
261
File f = Paths.get(parent, "SCCS", "s." + name).toFile();
262
if (!f.exists()) {
0 commit comments