Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-28502] Fix installer display name
  • Loading branch information
vjuranek committed May 28, 2015
1 parent 821d18f commit 357943e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/hudson/plugins/groovy/GroovyInstaller.java
Expand Up @@ -15,12 +15,12 @@ public GroovyInstaller(String id) {
@Extension
public static final class DescriptorImpl extends DownloadFromUrlInstaller.DescriptorImpl<GroovyInstaller> {
public String getDisplayName() {
return "Install from http://groovy.codehaus.org";
return "Install from Groovy website";
}

@Override
public boolean isApplicable(Class<? extends ToolInstallation> toolType) {
return toolType == GroovyInstallation.class;
}
}
}
}

0 comments on commit 357943e

Please sign in to comment.