Create TestAvatarCreator for use in debug builds only

This commit is contained in:
Torsten Grote
2020-11-27 13:51:56 -03:00
parent 00bf1eac0a
commit 6e5af2d3d3
5 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package org.briarproject.briar.api.test;
import java.io.InputStream;
import javax.annotation.Nullable;
public interface TestAvatarCreator {
@Nullable
InputStream getAvatarInputStream();
}