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 1dfd360 commit c179a1aCopy full SHA for c179a1a
src/main/java/io/jenkins/plugins/gitlabbranchsource/helpers/GitLabBrowser.java
@@ -75,7 +75,11 @@ private URL diffLink(GitChangeSet.Path path) throws IOException {
75
.expand());
76
}
77
78
- @Symbol("gitLab")
+ // [JENKINS-72104] notes that the symbol 'gitLabBrowser' is used
79
+ // instead of the preferred 'gitLab' symbol in order to not break
80
+ // compatibility for existing git plugin users. The git plugin
81
+ // already defines a repository browser with the symbol "gitLab".
82
+ @Symbol("gitLabBrowser")
83
@Extension
84
public static class DescriptorImpl extends Descriptor<RepositoryBrowser<?>> {
85
0 commit comments