mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-30 11:19:08 +01:00
remove deprecated stuff
This commit is contained in:
@@ -68,11 +68,13 @@ import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import org.junit.Ignore;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Sebastian Sdorra
|
||||
*/
|
||||
@Ignore
|
||||
public class RepositoryITCaseBase
|
||||
{
|
||||
|
||||
@@ -140,9 +142,10 @@ public class RepositoryITCaseBase
|
||||
|
||||
try
|
||||
{
|
||||
// TODO create repository url
|
||||
RepositoryClient rc =
|
||||
RepositoryClientFactory.createClient(repository.getType(), directory,
|
||||
repository.getUrl(), username, password);
|
||||
null, username, password);
|
||||
|
||||
rc.init();
|
||||
addTestFiles(rc);
|
||||
@@ -342,8 +345,9 @@ public class RepositoryITCaseBase
|
||||
protected RepositoryClient createRepositoryClient(User user, File directory)
|
||||
throws RepositoryClientException
|
||||
{
|
||||
// TODO create repository url
|
||||
return RepositoryClientFactory.createClient(repository.getType(),
|
||||
directory, repository.getUrl(), user.getName(), password);
|
||||
directory, null, user.getName(), password);
|
||||
}
|
||||
|
||||
//~--- fields ---------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user