Hi team,
I've just imported gwt-dev in Eclipse and I saw there is only one class that doesn't compile: com.google.gwt.dev.SourceSaver:
line 213: try (InputStream resourceAsStream = Resources.asByteSource(resource).openStream();
OutputStream out = dest.openForWrite(destPrefix + path);) {
ByteStreams.copy(resourceAsStream, out);
}
If I change to the compiler compliance to 1.7 it works. Should the eclipse/README.txt be updated?
eclipse/README.txt:
------------ Compiler settings ------------
Window->Preferences->Java->Compiler
Set the compiler compliance level to 1.6.
Juan