Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

[TRAFODION-1728]MT-DCS communication link failure #273

Merged
merged 1 commit into from Jan 21, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public TrafStatement getTrafStatement(String stmtLabel, int stmtHandle) throws S
while (keySetIterator.hasNext()) {
key = keySetIterator.next();
tstmt = statements.get(key);
if (tstmt.getStmtHandle() == stmtHandle);
if (tstmt.getStmtHandle() == stmtHandle)
return tstmt;
}
throw new SQLException("getTrafStatement stmtHandle [" + stmtHandle + "] returns null");
Expand Down