diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-04-27 11:55:16 +0200 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-04-27 11:55:16 +0200 |
commit | d69404ccb46f0462e432bef3196d76f825ce6927 (patch) | |
tree | e4d391988909b4cb7a07004df1b310f12314b25b /sonar-plugin-api | |
parent | 84bd2d97ea0ab91ff19d0c5f1d10ccfd1b41f924 (diff) | |
download | sonarqube-d69404ccb46f0462e432bef3196d76f825ce6927.tar.gz sonarqube-d69404ccb46f0462e432bef3196d76f825ce6927.zip |
SONAR-2323 Remove logs specific to Maven
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/utils/ServerHttpClient.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/utils/ServerHttpClient.java b/sonar-plugin-api/src/main/java/org/sonar/api/utils/ServerHttpClient.java index 6f174980bb9..3c55a6a0857 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/utils/ServerHttpClient.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/utils/ServerHttpClient.java @@ -76,7 +76,7 @@ public class ServerHttpClient implements BatchComponent { */ public void checkUp() { String exceptionLabel = "Sonar server at " + url + - " is unreacheable. Either start it or setup the sonar.host.url maven setting if the URL is incorrect"; + " is unreacheable. Either start it or setup the sonar.host.url setting if the URL is incorrect"; if (getId() == null) { throw new ServerConnectionException(exceptionLabel); } |