for (int j = 1; j < nodes.size(); j++) {
Node previousNode = nodes.get(j - 1);
Node currentNode = nodes.get(j);
int indexFrom = previousNode.getIndex();
int indexTo = currentNode.getIndex();
if (!connectionMatrix[indexFrom][indexTo]) {
connectionMatrix[indexFrom][indexTo] = true;
connectionMatrix[indexTo][indexFrom] = true;
contributed = true;
BondTriple bondTriple = new BondTriple(indexFrom, indexTo);
public class BondTriple implements Jsonable {
private Integer start;
private Integer finish;
private Integer bondType;
private Shape connector;
public BondTriple(Integer start, Integer finish) {
this.start = start;
this.finish = finish;
}
...
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsub...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-tool...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "GWT Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/IYcu87xv4RA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-tool...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Hi Michael: I tried this by Windows > Preferences > General > Workspace > Build and unchecked the "Build automatically" option. It didn't help. Am I doing the right thing? Is there any other option?
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsub...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "GWT Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/IYcu87xv4RA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-tool...@googlegroups.com.
tasks.withType(org.wisepersist.gradle.plugins.gwt.AbstractGwtActionTask) { |
args "-noincremental" |
} |
gwt { |
logLevel = 'INFO' |
maxHeapSize = "2048M"; |
gwtVersion='2.8.2' |
modules 'xxx |
//src += files("build/generated/source/apt/main"); |
compiler { |
//ea = false //enable assert statements for testing result conditions |
strict = true; |
style = "OBF"; |
//style = "PRETTY"; |
//style = "DETAILED"; |
localWorkers = 4; |
} |
superDev { |
noPrecompile = true; |
failOnError = false; |
bindAddress = "0.0.0.0"; |
} |
eclipse { |
addGwtContainer = true; |
} |
Michael & DavidAfter clearing the TEMP folder and clearing the compiler caches at localhost:9876 that error message disappeared.
On Mon, Jul 30, 2018 at 3:18 PM Jens <jens.ne...@gmail.com> wrote:
--Hi Michael: I tried this by Windows > Preferences > General > Workspace > Build and unchecked the "Build automatically" option. It didn't help. Am I doing the right thing? Is there any other option?GWT SuperDevMode has its own cache that you can clear by visiting the SuperDevMode page (localhost:9876) and hit the small clean button at the bottom. Once you have done that SDM starts from scratch and compiles everything again.-- J.
You received this message because you are subscribed to a topic in the Google Groups "GWT Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/IYcu87xv4RA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-toolkit+unsub...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsub...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsub...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.