INT-2540 AbstractJmsChannel wasn't Marked Abstract

Class should have been abstract. In any case,
it could not be used in any meaningful way
as a concrete class so changing it would
not represent a breaking change.
This commit is contained in:
Gary Russell
2012-06-07 12:10:18 -04:00
committed by Oleg Zhurakousky
parent dae6470248
commit e6bac96217

View File

@@ -25,7 +25,7 @@ import org.springframework.util.Assert;
* @author Mark Fisher
* @since 2.0
*/
public class AbstractJmsChannel extends AbstractMessageChannel {
public abstract class AbstractJmsChannel extends AbstractMessageChannel {
private final JmsTemplate jmsTemplate;