Skip to content

Commit

Permalink
[JENKINS-15207] Fix typo in warning message when config-file-provider…
Browse files Browse the repository at this point in the history
… plugin is not installed

Originally-Committed-As: 1bab7100128785391f8a33ad823996b914a148f1
  • Loading branch information
jeffmaury committed Sep 17, 2012
1 parent d7539d2 commit d51fac6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -37,7 +37,7 @@ public ConfigProviderDelegate() {
if (Jenkins.getInstance().getPlugin("config-file-provider") != null) {
cpf = new ConfigProviderMediator();
} else {
LOGGER.warning("'config-file-provider' plugin installed..., administration of setting.xml will not be available!");
LOGGER.warning("'config-file-provider' plugin not installed..., administration of setting.xml will not be available!");
cpf = new DefaultConfigProviderFacade();
}
}
Expand Down

0 comments on commit d51fac6

Please sign in to comment.