Update to GWT 2.6 (RC1)

git-svn-id: https://zxing.googlecode.com/svn/trunk@2928 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen@gmail.com 2013-11-29 11:15:42 +00:00
parent 6cf76e3880
commit e51ee2fca5
2 changed files with 10 additions and 2 deletions

View file

@ -43,11 +43,19 @@
</parent> </parent>
<properties> <properties>
<gwt.version>2.5.1</gwt.version> <gwt.version>2.6.0-rc1</gwt.version>
</properties> </properties>
<build> <build>
<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>7</source>
<target>7</target>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId> <artifactId>gwt-maven-plugin</artifactId>

View file

@ -45,7 +45,7 @@ import java.util.List;
public final class Generator implements EntryPoint { public final class Generator implements EntryPoint {
private final List<GeneratorSource> generators = new ArrayList<GeneratorSource>(); private final List<GeneratorSource> generators = new ArrayList<>();
private final ListBox genList = new ListBox(); private final ListBox genList = new ListBox();
private final ListBox sizeList = new ListBox(); private final ListBox sizeList = new ListBox();
private final ListBox ecLevelList = new ListBox(); private final ListBox ecLevelList = new ListBox();