Skip to content

Commit

Permalink
Merge branch 'devel-2.x.x' into ccre2015
Browse files Browse the repository at this point in the history
  • Loading branch information
Colby Skeggs committed Mar 10, 2015
2 parents 6db7a14 + bab7805 commit 62d9345
Show file tree
Hide file tree
Showing 401 changed files with 14 additions and 102,987 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@
/.metadata
/RemoteSystemsTempFiles
/Cobertura-2.0.3
/Javadoc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ void checkRPCTimeouts() {
}
}
for (String rmt : toRemove) {
Logger.warning("Timeout on RPC response for " + rmt);
timeouts.remove(rmt);
try {
bindings.remove(rmt).close();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,14 +183,14 @@ public Entry[] queryRConf() throws InterruptedException {
outs[0] = RConf.title("Select Autonomous Mode");
int i = 1;
for (InstinctModeModule m : modes) {
outs[i++] = (m == mode) ? RConf.string(mode.getModeName()) : RConf.button(mode.getModeName());
outs[i++] = (m == mode) ? RConf.string(m.getModeName()) : RConf.button(m.getModeName());
}
outs[i] = RConf.autoRefresh(5000);
return outs;
}

public boolean signalRConf(int field, byte[] data) throws InterruptedException {
if (field >= 1 && field < modes.size()) {
if (field >= 1 && field <= modes.size()) {
setActiveMode(modes.get(field - 1));
return true;
}
Expand Down
151 changes: 0 additions & 151 deletions Javadoc/allclasses-frame.html

This file was deleted.

151 changes: 0 additions & 151 deletions Javadoc/allclasses-noframe.html

This file was deleted.

Loading

0 comments on commit 62d9345

Please sign in to comment.