[app-wiring-refactor]: Apply review comments:

- Add reference to original library in `FluentBuilder`.
- Change `I<Name>` notation to `<Name>Impl` notation.
- Move error config to test resources
- Add comment with config instruction
- Add config to the documentation
This commit is contained in:
Francesco Burato 2020-10-30 22:37:25 +00:00
parent e8bb8ae24b
commit 6e3750d50a
41 changed files with 171 additions and 146 deletions

View file

@ -1,7 +1,7 @@
package mage.server.draft;
import mage.game.draft.Draft;
import mage.server.managers.IDraftManager;
import mage.server.managers.DraftManager;
import mage.server.managers.ManagerFactory;
import mage.view.DraftPickView;
@ -14,12 +14,12 @@ import java.util.concurrent.ConcurrentMap;
/**
* @author BetaSteward_at_googlemail.com
*/
public class DraftManager implements IDraftManager {
public class DraftManagerImpl implements DraftManager {
private final ManagerFactory managerFactory;
private final ConcurrentMap<UUID, DraftController> draftControllers = new ConcurrentHashMap<>();
public DraftManager(ManagerFactory managerFactory) {
public DraftManagerImpl(ManagerFactory managerFactory) {
this.managerFactory = managerFactory;
}