Skip to content

Commit

Permalink
Merge pull request #98 from rpionke/master
Browse files Browse the repository at this point in the history
[JENKINS-42833] fix typo in image source
  • Loading branch information
aheritier committed Jun 2, 2017
2 parents 616f9a6 + d3232da commit a8b6be6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/hudson/maven/MavenModuleSet.java
Expand Up @@ -1459,16 +1459,16 @@ public boolean isApplicable(Descriptor descriptor) {
static {
IconSet.icons.addIcon(
new Icon("icon-maven-moduleset icon-sm",
"plugin/maven/images/16x16/mavenmoduleset.png", Icon.ICON_SMALL_STYLE));
"plugin/maven-plugin/images/16x16/mavenmoduleset.png", Icon.ICON_SMALL_STYLE));
IconSet.icons.addIcon(
new Icon("icon-maven-moduleset icon-md",
"plugin/maven/images/24x24/mavenmoduleset.png", Icon.ICON_MEDIUM_STYLE));
"plugin/maven-plugin/images/24x24/mavenmoduleset.png", Icon.ICON_MEDIUM_STYLE));
IconSet.icons.addIcon(
new Icon("icon-maven-moduleset icon-lg",
"plugin/maven/images/32x32/mavenmoduleset.png", Icon.ICON_LARGE_STYLE));
"plugin/maven-plugin/images/32x32/mavenmoduleset.png", Icon.ICON_LARGE_STYLE));
IconSet.icons.addIcon(
new Icon("icon-maven-moduleset icon-xlg",
"plugin/maven/images/48x48/mavenmoduleset.png", Icon.ICON_XLARGE_STYLE));
"plugin/maven-plugin/images/48x48/mavenmoduleset.png", Icon.ICON_XLARGE_STYLE));
}
}

Expand Down

0 comments on commit a8b6be6

Please sign in to comment.