Moved ImmediateExecutor out of plugins package.

This commit is contained in:
akwizgran
2016-02-26 14:16:09 +00:00
parent 8ba95a2965
commit b8cf508b0c
4 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
package org.briarproject;
import java.util.concurrent.Executor;
public class ImmediateExecutor implements Executor {
public void execute(Runnable r) {
r.run();
}
}