Skip to content

Commit 30dcbbd

Browse files
committed
Fix bug for cross-repo navigation to the JDK sources.
Previously, the generated LSIF pointed to a non-existing repo "jdk:8" causing goto definition to stop working for JDK symbols.
1 parent 45e927d commit 30dcbbd

File tree

1 file changed

+1
-1
lines changed
  • lsif-semanticdb/src/main/java/com/sourcegraph/lsif_semanticdb

1 file changed

+1
-1
lines changed

lsif-semanticdb/src/main/java/com/sourcegraph/lsif_semanticdb/JdkPackage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public JdkPackage(String version) {
99

1010
@Override
1111
public String repoName() {
12-
return String.format("jdk:%s", version);
12+
return String.format("jdk/%s", version);
1313
}
1414

1515
@Override

0 commit comments

Comments
 (0)