Update of /cvsroot/tm4j/tm4j/src/org/tm4j/tmapi/core
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv13407/src/org/tm4j/tmapi/core
Modified Files:
Tag: TM4J_1_x
TMAPITopicImpl.java
Log Message:
Fixed bug [ 1963893 ] ([TMAPI] Subject locator is not removed from a topic)
Index: TMAPITopicImpl.java
===================================================================
RCS file: /cvsroot/tm4j/tm4j/src/org/tm4j/tmapi/core/TMAPITopicImpl.java,v
retrieving revision 1.23
retrieving revision 1.23.2.1
diff -C2 -d -r1.23 -r1.23.2.1
*** TMAPITopicImpl.java 7 Mar 2006 15:14:19 -0000 1.23
--- TMAPITopicImpl.java 14 May 2008 15:22:04 -0000 1.23.2.1
***************
*** 75,79 ****
return Wrapper.wrap(bn, m_tm);
} catch (Exception ex) {
! throw new RuntimeException(ex.toString());
}
}
--- 75,79 ----
return Wrapper.wrap(bn, m_tm);
} catch (Exception ex) {
! throw new RuntimeException(ex);
}
}
***************
*** 330,334 ****
if (m_obj.getSubject() == null) return;
Locator rawLoc = Wrapper.unwrap(loc);
! if (rawLoc.equals(m_obj.getSubject())) {
return;
}
--- 330,334 ----
if (m_obj.getSubject() == null) return;
Locator rawLoc = Wrapper.unwrap(loc);
! if (!rawLoc.equals(m_obj.getSubject())) {
return;
}
|