Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ public class RepositoryFactory {
private static RepositoryFactory sInstance;
private TransferMethodConfigurationRepository mTransferMethodConfigurationRepository;
private TransferMethodRepository mTransferMethodRepository;
private UserRepository mUserRepository;

private RepositoryFactory() {
mTransferMethodConfigurationRepository = new TransferMethodConfigurationRepositoryImpl();
mTransferMethodRepository = new TransferMethodRepositoryImpl();
mUserRepository = new UserRepositoryImpl();
}

public static synchronized RepositoryFactory getInstance() {
Expand All @@ -54,10 +52,6 @@ public TransferMethodRepository getTransferMethodRepository() {
return mTransferMethodRepository;
}

public UserRepository getUserRepository() {
return mUserRepository;
}

public static void clearInstance() {
sInstance = null;
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.