Merge branch 'master' of git.springsource.org:spring-integration/spring-integration

This commit is contained in:
Oleg Zhurakousky
2010-09-15 14:59:59 -04:00
2 changed files with 1 additions and 6 deletions

View File

@@ -58,9 +58,4 @@ public interface MessageGroup {
* @return the timestamp (milliseconds since epoch) associated with the creation of this group
*/
long getTimestamp();
/**
* Mark the given message in this group. If the message is not part of this group then this call has no effect.
*/
void mark(Message<?> messageToMark);
}

View File

@@ -155,7 +155,7 @@ public class SimpleMessageGroup implements MessageGroup {
}
/**
* {@inheritDoc}}
* Mark the given message in this group. If the message is not part of this group then this call has no effect.
*/
public void mark(Message<?> messageToMark) {
synchronized (lock) {