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 dee7766 commit 0c0c463Copy full SHA for 0c0c463
src/main/java/io/jenkins/plugins/gitlabbranchsource/GitLabAvatarTrait.java
@@ -33,11 +33,11 @@ public void setDisableProjectAvatar(boolean disableProjectAvatar) {
33
protected void decorateContext(SCMSourceContext<?, ?> context) {
34
if (context instanceof GitLabSCMSourceContext) {
35
GitLabSCMSourceContext ctx = (GitLabSCMSourceContext) context;
36
- ctx.withProjectAvatarDisabled(doDisableProjectAvatar());
+ ctx.withProjectAvatarDisabled(isDisableProjectAvatar());
37
}
38
39
40
- public boolean doDisableProjectAvatar() {
+ public boolean isDisableProjectAvatar() {
41
return disableProjectAvatar;
42
43
0 commit comments