Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
joram
joram
Commits
b7c73e0f
Commit
b7c73e0f
authored
Feb 27, 2014
by
David Feliot
Browse files
Bug fixed.
parent
1d1b0ea8
Changes
2
Hide whitespace changes
Inline
Side-by-side
joram/joram/mom/core/src/main/java/org/objectweb/joram/mom/util/MessageIdListImpl.java
View file @
b7c73e0f
...
...
@@ -142,6 +142,11 @@ public class MessageIdListImpl implements MessageIdList, Encodable,
}
}
@Override
public
String
toString
()
{
return
"MessageIdListImpl [listId="
+
listId
+
", list="
+
list
+
"]"
;
}
public
static
class
MessageIdListImplEncodableFactory
implements
EncodableFactory
{
public
Encodable
createEncodable
()
{
...
...
joram/joram/mom/core/src/main/java/org/objectweb/joram/mom/util/MessageIdListImplFactory.java
View file @
b7c73e0f
...
...
@@ -36,7 +36,9 @@ public class MessageIdListImplFactory extends MessageIdListFactory {
public
MessageIdList
loadMessageIdList
(
String
listId
)
throws
Exception
{
// TODO: as we know the type, the method 'loadByteArray' would be more efficient
MessageIdListImpl
res
=
(
MessageIdListImpl
)
AgentServer
.
getTransaction
().
load
(
listId
);
res
.
setListId
(
listId
);
if
(
res
!=
null
)
{
res
.
setListId
(
listId
);
}
return
res
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment