|
From: Lars H. <he...@se...> - 2008-05-16 18:12:26
|
Hi Darina,
[...]
> doesn't support TOLOG. So, TM4L cannot currently compile :-( Anyway, my
> question is, what is the smallest part containing the change that I can
> compile independently in a jar and add it to the other TM4J/TMAPI jars?
Search for "removeSubjectLocator" in your TMAPITopicImpl and change the
the following lines from:
if (rawLoc.equals(m_obj.getSubject())) {
return;
}
into
if (!rawLoc.equals(m_obj.getSubject())) {
return;
}
Just add a ! in front to the rawLoc.
In the original TMAPITopicImpl file that code appears in the lines
332 - 334.
Best regards,
Lars
--
Semagia
<http://www.semagia.com>
|