From 3440b8586774c0d4bd3555664c62f1d13fed1f4d Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Sun, 12 May 2013 10:52:44 +0200 Subject: [PATCH] Remove unneeded interface --- .../preloading/instrumentation/InterceptionInstrumenter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/preloader/instrumentation/src/org/jetbrains/jet/preloading/instrumentation/InterceptionInstrumenter.java b/compiler/preloader/instrumentation/src/org/jetbrains/jet/preloading/instrumentation/InterceptionInstrumenter.java index fe7112c4b2b..8de43ea87e6 100644 --- a/compiler/preloader/instrumentation/src/org/jetbrains/jet/preloading/instrumentation/InterceptionInstrumenter.java +++ b/compiler/preloader/instrumentation/src/org/jetbrains/jet/preloading/instrumentation/InterceptionInstrumenter.java @@ -29,7 +29,7 @@ import java.util.regex.Pattern; import static org.jetbrains.asm4.Opcodes.*; -public class InterceptionInstrumenter implements Instrumenter { +public class InterceptionInstrumenter { private static final Pattern ANYTHING = Pattern.compile(".*"); private final Map classPatterns = new LinkedHashMap();