Reverted test for 1.8 bytecode parsing - 4.0.x tests are still on target 1.7

Issue: SPR-11979
This commit is contained in:
Juergen Hoeller
2014-07-10 17:45:08 +02:00
parent a3a76d8c15
commit ed88155f55

View File

@@ -16,7 +16,6 @@
package example.scannable;
import java.util.Comparator;
import java.util.List;
import java.util.concurrent.Future;
import javax.annotation.PostConstruct;
@@ -44,10 +43,6 @@ import org.springframework.util.Assert;
@Service @Lazy @DependsOn("myNamedComponent")
public class FooServiceImpl implements FooService {
// Just to test ASM5's bytecode parsing of INVOKESPECIAL/STATIC on interfaces
private static final Comparator<MessageBean> COMPARATOR_BY_MESSAGE = Comparator.comparing(MessageBean::getMessage);
@Autowired private FooDao fooDao;
@Autowired public BeanFactory beanFactory;