Remove unused test module.

This commit is contained in:
akwizgran
2019-05-31 17:18:49 +01:00
parent 33d35148d8
commit 5860c723de

View File

@@ -1,21 +0,0 @@
package org.briarproject.bramble.test;
import org.briarproject.bramble.api.crypto.CryptoExecutor;
import java.util.concurrent.Executor;
import javax.inject.Singleton;
import dagger.Module;
import dagger.Provides;
@Module
public class TestCryptoExecutorModule {
@Provides
@Singleton
@CryptoExecutor
Executor provideCryptoExecutor() {
return new ImmediateExecutor();
}
}