Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Made the commented out (bugged) code a little easier to debug later. No
Browse files Browse the repository at this point in the history
behavior is affected by this commit.

Signed-off-by: Jordan Deyton <deytonjh@ornl.gov>
  • Loading branch information
Jordan Deyton committed Apr 17, 2015
1 parent e068235 commit 4615191
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -163,7 +163,7 @@ public int getNextWindowId() {
// FIXME There is a bug that prevents any window ID besides 1 from
// working as expected. For now, just return 1. A bug ticket has been
// filed.
// int windowId = 1;
int windowId = 1;
// if (getState() == ConnectionState.Connected) {
// // The order of the returned list is not guaranteed. Throw it into
// // an ordered set and get the lowest positive ID not in the set.
Expand All @@ -176,7 +176,6 @@ public int getNextWindowId() {
// } else {
// windowId = -1;
// }
// return windowId;
return 1;
return windowId;
}
}

0 comments on commit 4615191

Please sign in to comment.