Li, Fan <fanli@amazon.com> reported to the mailing list that the connector id was not being incremented.

fixed.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@387930 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-03-22 20:25:45 +00:00
parent e94ba16710
commit ea7dd79062
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ public abstract class JmsConnector implements Service{
static int nextId;
static private synchronized int getNextId() {
return nextId;
return nextId++;
}
public void setName(String name) {