]> source.dussan.org Git - sonarqube.git/commitdiff
Support of exceptions without message in web services
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 4 Aug 2014 17:22:21 +0000 (19:22 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 4 Aug 2014 17:22:34 +0000 (19:22 +0200)
server/sonar-server/src/main/java/org/sonar/server/exceptions/Message.java

index 0882de85f196c9a9687631d57d43bcae75f00e17..d821b6f246a154a317b989f0b079ffc5ce255670 100644 (file)
@@ -20,7 +20,6 @@
 package org.sonar.server.exceptions;
 
 import com.google.common.base.Objects;
-import com.google.common.base.Preconditions;
 import org.apache.commons.lang.StringUtils;
 
 public class Message {
@@ -42,8 +41,7 @@ public class Message {
   }
 
   public static Message of(String l10nKey, Object... l10nParams) {
-    Preconditions.checkArgument(StringUtils.isNotBlank(l10nKey));
-    return new Message(l10nKey, l10nParams);
+    return new Message(StringUtils.defaultString(l10nKey), l10nParams);
   }
 
   @Override