diff options
Diffstat (limited to 'client-compiler')
-rw-r--r-- | client-compiler/src/main/java/com/vaadin/tools/CvalChecker.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client-compiler/src/main/java/com/vaadin/tools/CvalChecker.java b/client-compiler/src/main/java/com/vaadin/tools/CvalChecker.java index 96d68914d0..6ed6959592 100644 --- a/client-compiler/src/main/java/com/vaadin/tools/CvalChecker.java +++ b/client-compiler/src/main/java/com/vaadin/tools/CvalChecker.java @@ -249,7 +249,8 @@ public final class CvalChecker { msg = info.getMessage().replace("\\n", "\n"); } else if (info != null && info.isLicenseExpired()) { String type = "evaluation".equals(info.getType()) - ? "Evaluation license" : "License"; + ? "Evaluation license" + : "License"; msg = getErrorMessage("expired", title, majorVers, type); } else if (key == null) { msg = getErrorMessage("none", title, majorVers); @@ -261,7 +262,7 @@ public final class CvalChecker { } /** - * Exception thrown when the license server is unreachable + * Exception thrown when the license server is unreachable. */ public static class UnreachableCvalServerException extends Exception { private static final long serialVersionUID = 1L; |