diff options
author | Artur Signell <artur@vaadin.com> | 2014-10-16 11:28:12 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-10-31 07:34:00 +0000 |
commit | 5a8f373e53f804b1e49d40bf74040fc69381b985 (patch) | |
tree | 409732a8fec5008994d03768606c1a112deabe30 /client-compiler/src | |
parent | 54ed43adad5b853dfffdc48aebbc74087e34b735 (diff) | |
download | vaadin-framework-5a8f373e53f804b1e49d40bf74040fc69381b985.tar.gz vaadin-framework-5a8f373e53f804b1e49d40bf74040fc69381b985.zip |
Update GWT to 2.7.0.beta1vaadin1.
Update client-compiler-deps to 1.2.0.
Fix classpaths for devmodes.
Change-Id: I8452271594b4563bf476420ff7ab22985913e397
Diffstat (limited to 'client-compiler/src')
-rw-r--r-- | client-compiler/src/com/vaadin/tools/CvalChecker.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/client-compiler/src/com/vaadin/tools/CvalChecker.java b/client-compiler/src/com/vaadin/tools/CvalChecker.java index 53cbce798e..b3345c7658 100644 --- a/client-compiler/src/com/vaadin/tools/CvalChecker.java +++ b/client-compiler/src/com/vaadin/tools/CvalChecker.java @@ -32,10 +32,11 @@ import java.util.Locale; import java.util.ResourceBundle; import java.util.prefs.Preferences; +import org.apache.commons.io.IOUtils; + import elemental.json.JsonException; import elemental.json.JsonObject; import elemental.json.impl.JsonUtil; -import org.apache.commons.io.IOUtils; /** * This class is able to validate the vaadin CVAL license. @@ -54,8 +55,8 @@ public final class CvalChecker { * It is not in a separate f le, so as it is easier to copy into any product * which does not depend on vaadin core. * - * We are using org.json in order not to use additional dependency like - * auto-beans, gson, etc. + * We are using elemental.json in order not to use additional dependency + * like auto-beans, gson, etc. */ public static class CvalInfo { |