Details
-
Type: Improvement
-
Status: Closed
-
Priority: Default
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.6.0
-
Component/s: None
-
Labels:None
Description
Unnecessary conversion from Message to String in Session.nextQueued():
// TODO SESSION Is it really necessary to convert the queued message to a string?
next(msg.toString());
In method next(String msg) the message is parsed back to a Message, so the conversion is not only inefficient but also pointless.