1 package org.apache.commons.javaflow.bytecode.transformation;
2
3
4 public final class Invoker implements Runnable {
5
6 private Runnable runnable;
7
8 public Invoker(Runnable runnable) {
9 this.runnable = runnable;
10 }
11
12 public void run() {
13 runnable.run();
14 }
15
16 }