Remove redundant type arguments for Java 8+ in compiler modules

This commit is contained in:
Alexander Udalov
2017-04-01 02:39:10 +03:00
parent d440f07111
commit 78e278ec4c
56 changed files with 104 additions and 128 deletions
@@ -20,11 +20,10 @@ import java.io.PrintStream;
import java.util.Collections;
public abstract class InterceptionInstrumenterAdaptor implements Instrumenter {
private final InterceptionInstrumenter instrumenter;
public InterceptionInstrumenterAdaptor() {
this.instrumenter = new InterceptionInstrumenter(Collections.<Class<?>>singletonList(getClass()));
this.instrumenter = new InterceptionInstrumenter(Collections.singletonList(getClass()));
}
@Override