Author: rajith
Date: Mon Nov 12 08:49:47 2007
New Revision: 594208
URL: http://svn.apache.org/viewvc?rev=594208&view=rev
Log:
Uncommented the lines that caused me a compilation error (due to an out of data
spec file)
Modified:
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/XAResourceImpl.java
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/njms/XAResourceImpl.java
Modified:
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/XAResourceImpl.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/XAResourceImpl.java?rev=594208&r1=594207&r2=594208&view=diff
==============================================================================
---
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/XAResourceImpl.java
(original)
+++
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/XAResourceImpl.java
Mon Nov 12 08:49:47 2007
@@ -333,7 +333,7 @@
// todo make sure that the keys of the returned map are the xids
Xid[] result = new Xid[res.getInDoubt().size()];
int i = 0;
- /* try
+ try
{
for (Object xid : res.getInDoubt())
{
@@ -348,7 +348,7 @@
_logger.debug("Cannot convert string into Xid ", e);
}
throw new XAException(XAException.XAER_PROTO);
- }*/
+ }
return result;
}
Modified:
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/njms/XAResourceImpl.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/njms/XAResourceImpl.java?rev=594208&r1=594207&r2=594208&view=diff
==============================================================================
---
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/njms/XAResourceImpl.java
(original)
+++
incubator/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpidity/njms/XAResourceImpl.java
Mon Nov 12 08:49:47 2007
@@ -333,9 +333,9 @@
// todo make sure that the keys of the returned map are the xids
Xid[] result = new Xid[res.getInDoubt().size()];
int i = 0;
- /* try
+ try
{
- /* for (Object xid : res.getInDoubt())
+ for (Object xid : res.getInDoubt())
{
result[i] = new XidImpl((String) xid);
i++;
@@ -348,7 +348,7 @@
_logger.debug("Cannot convert string into Xid ", e);
}
throw new XAException(XAException.XAER_PROTO);
- }*/
+ }
return result;
}