Remove createTestData()

This commit is contained in:
goapunk
2018-04-24 16:57:02 +02:00
parent fe213d46e3
commit 69c34adae3
2 changed files with 1 additions and 8 deletions

View File

@@ -5,11 +5,8 @@ import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
@NotNullByDefault
public interface TestDataCreator {
/* Creates fake test data on the DatabaseExecutor */
void createTestData();
/**
* Creates a configurable amount of fake test data on the DatabaseExecutor
* Create fake test data on the DatabaseExecutor
*
* @param numContacts Number of contacts to create.
* @param numPrivateMsgs Number of private messages to create for each

View File

@@ -126,10 +126,6 @@ public class TestDataCreatorImpl implements TestDataCreator {
});
}
public void createTestData() {
createTestData(20, 15, 30, 3, 30);
}
@IoExecutor
private void createTestDataOnDbExecutor(int numContacts, int numPrivateMsgs,
int numBlogPosts, int numForums, int numForumPosts)