Browse Source

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

Issue: SPR-11979
pull/618/head
Juergen Hoeller 12 years ago
parent
commit
ed88155f55
  1. 5
      spring-context/src/test/java/example/scannable/FooServiceImpl.java

5
spring-context/src/test/java/example/scannable/FooServiceImpl.java

@ -16,7 +16,6 @@ @@ -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; @@ -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;

Loading…
Cancel
Save