Update vtm-web-js build

This commit is contained in:
Emux 2017-02-06 10:57:27 +02:00
parent 8fc354c96a
commit 6d93aaf57f
2 changed files with 4 additions and 1 deletions

View File

@ -36,6 +36,9 @@ gwt {
gwtVersion = project.ext.gwtVersion
modules 'org.oscim.web.VtmWebJs'
minHeapSize = "512M"
maxHeapSize = "2048M"
superDev {
noPrecompile = true
}

View File

@ -3,6 +3,6 @@ package javax.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target( { ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE, ElementType.PACKAGE })
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE, ElementType.PACKAGE})
public @interface CheckReturnValue {
}