reordered property declaration

This commit is contained in:
Mark Fisher
2010-11-14 21:41:32 -05:00
parent 860de3bf1d
commit 890ca671fc

View File

@@ -70,8 +70,6 @@ import org.springframework.util.StringUtils;
*/
public class GatewayProxyFactoryBean extends AbstractEndpoint implements TrackableComponent, FactoryBean<Object>, MethodInterceptor, BeanClassLoaderAware {
private volatile InboundMessageMapper<Throwable> exceptionMapper;
private volatile Class<?> serviceInterface;
private volatile MessageChannel defaultRequestChannel;
@@ -96,6 +94,8 @@ public class GatewayProxyFactoryBean extends AbstractEndpoint implements Trackab
private volatile AsyncTaskExecutor asyncExecutor = new SimpleAsyncTaskExecutor();
private volatile InboundMessageMapper<Throwable> exceptionMapper;
private volatile boolean initialized;
private final Object initializationMonitor = new Object();