summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/vaadin/tools/WidgetsetCompiler.java (renamed from src/com/vaadin/launcher/WidgetsetCompiler.java)4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/vaadin/launcher/WidgetsetCompiler.java b/src/com/vaadin/tools/WidgetsetCompiler.java
index 09dfce3f27..0421164873 100644
--- a/src/com/vaadin/launcher/WidgetsetCompiler.java
+++ b/src/com/vaadin/tools/WidgetsetCompiler.java
@@ -1,4 +1,4 @@
-package com.vaadin.launcher;
+package com.vaadin.tools;
import java.lang.reflect.Method;
@@ -43,6 +43,8 @@ public class WidgetsetCompiler {
public void run() {
try {
// GWTCompiler.main(args);
+ // avoid warnings
+ System.setProperty("gwt.nowarn.legacy.tools", "true");
Class<?> compilerClass = Class
.forName("com.google.gwt.dev.GWTCompiler");
Method method = compilerClass.getDeclaredMethod("main",