From 0f922f83c666fff7d852fc087534daa8eee06d88 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Wed, 19 Oct 2011 11:34:56 -0400 Subject: [PATCH] paremeterized with H for 'handler' --- .../AbstractSimpleMessageHandlerFactoryBean.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/config/AbstractSimpleMessageHandlerFactoryBean.java b/spring-integration-core/src/main/java/org/springframework/integration/config/AbstractSimpleMessageHandlerFactoryBean.java index 61f79fd5f2..3012642196 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/config/AbstractSimpleMessageHandlerFactoryBean.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/config/AbstractSimpleMessageHandlerFactoryBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at @@ -29,9 +29,9 @@ import org.springframework.util.Assert; * @author Dave Syer * @author Oleg Zhurakousky */ -public abstract class AbstractSimpleMessageHandlerFactoryBean implements FactoryBean, BeanFactoryAware { +public abstract class AbstractSimpleMessageHandlerFactoryBean implements FactoryBean, BeanFactoryAware { - private volatile M handler; + private volatile H handler; private volatile MessageChannel outputChannel; @@ -64,7 +64,7 @@ public abstract class AbstractSimpleMessageHandlerFactoryBean getObjectType() { if (this.handler != null) {