Fixed javadocs

This commit is contained in:
Marcin Grzejszczak
2016-10-04 13:51:44 +02:00
parent d0bedb22cc
commit 842f8a1bb4
2 changed files with 1 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import org.springframework.util.concurrent.ListenableFuture;
/**
* {@link ThreadPoolTaskExecutor} that delegates execution to {@link LazyTraceExecutor}
* {@link ThreadPoolTaskExecutor} that continues a span if one was passed or creates a new one
*
* @author Marcin Grzejszczak
* @since 1.0.10

View File

@@ -16,11 +16,8 @@
package org.springframework.cloud.sleuth.instrument.async;
import java.lang.invoke.MethodHandles;
import java.util.concurrent.Executor;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.config.BeanPostProcessor;
@@ -35,8 +32,6 @@ import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
*/
class TraceExecutorBeanPostProcessor implements BeanPostProcessor {
private static final Log log = LogFactory.getLog(MethodHandles.lookup().lookupClass());
private final BeanFactory beanFactory;
public TraceExecutorBeanPostProcessor(BeanFactory beanFactory) {