Skip to content

Commit

Permalink
Move classes
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed Sep 23, 2018
1 parent 6f03624 commit bb20264
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 20 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/bisq/core/app/BisqEnvironment.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

package bisq.core.app;

import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.btc.BtcOptionKeys;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.nodes.UserAgent;
import bisq.core.btc.UserAgent;
import bisq.core.dao.DaoOptionKeys;
import bisq.core.exceptions.BisqException;
import bisq.core.filter.FilterManager;
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/app/BisqExecutable.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import bisq.core.arbitration.ArbitratorManager;
import bisq.core.btc.BtcOptionKeys;
import bisq.core.btc.nodes.RegTestHost;
import bisq.core.btc.setup.RegTestHost;
import bisq.core.btc.setup.WalletsSetup;
import bisq.core.btc.wallet.BsqWalletService;
import bisq.core.btc.wallet.BtcWalletService;
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/app/SetupUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package bisq.core.app;

import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;

import bisq.network.crypto.DecryptedDataTuple;
import bisq.network.crypto.EncryptionService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/

package bisq.core.btc.nodes;
package bisq.core.btc;

import bisq.core.app.BisqEnvironment;
import bisq.core.provider.fee.FeeService;
Expand Down
3 changes: 1 addition & 2 deletions core/src/main/java/bisq/core/btc/BitcoinModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
import bisq.core.btc.model.AddressEntryList;
import bisq.core.btc.model.BalanceModel;
import bisq.core.btc.nodes.BtcNodes;
import bisq.core.btc.nodes.RegTestHost;
import bisq.core.btc.nodes.UserAgent;
import bisq.core.btc.setup.RegTestHost;
import bisq.core.btc.setup.WalletsSetup;
import bisq.core.btc.wallet.BsqCoinSelector;
import bisq.core.btc.wallet.BsqWalletService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/

package bisq.core.btc.nodes;
package bisq.core.btc;

import javax.inject.Inject;
import javax.inject.Named;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with Bisq. If not, see <http://www.gnu.org/licenses/>.
*/

package bisq.core.btc.nodes;
package bisq.core.btc.setup;

public enum RegTestHost {

Expand Down
1 change: 0 additions & 1 deletion core/src/main/java/bisq/core/btc/setup/WalletsSetup.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import bisq.core.btc.nodes.BtcNodes.BtcNode;
import bisq.core.btc.nodes.BtcNodesRepository;
import bisq.core.btc.nodes.BtcNodesSetupPreferences;
import bisq.core.btc.nodes.RegTestHost;
import bisq.core.user.Preferences;

import bisq.network.Socks5MultiDiscovery;
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/locale/Res.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package bisq.core.locale;

import bisq.core.app.BisqEnvironment;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;

import bisq.common.UserThread;
import bisq.common.app.DevEnv;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package bisq.core.payment.validation;

import bisq.core.app.BisqEnvironment;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.locale.Res;
import bisq.core.util.validation.InputValidator;

Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/user/Preferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

import bisq.core.app.AppOptionKeys;
import bisq.core.app.BisqEnvironment;
import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.btc.BtcOptionKeys;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.nodes.BtcNodes;
import bisq.core.btc.wallet.Restrictions;
import bisq.core.locale.Country;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package bisq.core.payment.validation;

import bisq.core.app.BisqEnvironment;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.locale.CurrencyUtil;
import bisq.core.locale.Res;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import bisq.desktop.util.FormBuilder;

import bisq.core.app.BisqEnvironment;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.locale.Res;

import bisq.common.app.DevEnv;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import bisq.desktop.util.Layout;

import bisq.core.app.BisqEnvironment;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.locale.Country;
import bisq.core.locale.CountryUtil;
import bisq.core.locale.CryptoCurrency;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package bisq.desktop.util.validation;

import bisq.core.app.BisqEnvironment;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.locale.CurrencyUtil;
import bisq.core.locale.Res;
import bisq.core.util.BSFormatter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package bisq.desktop.util.validation;

import bisq.core.app.BisqEnvironment;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.locale.CurrencyUtil;
import bisq.core.locale.Res;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package bisq.desktop.util.validation;

import bisq.core.app.BisqEnvironment;
import bisq.core.btc.nodes.BaseCurrencyNetwork;
import bisq.core.btc.BaseCurrencyNetwork;
import bisq.core.locale.CurrencyUtil;
import bisq.core.locale.Res;

Expand Down
2 changes: 1 addition & 1 deletion monitor/src/main/java/bisq/monitor/MonitorEnvironment.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import bisq.core.app.AppOptionKeys;
import bisq.core.app.BisqEnvironment;
import bisq.core.btc.BtcOptionKeys;
import bisq.core.btc.nodes.UserAgent;
import bisq.core.btc.UserAgent;
import bisq.core.dao.DaoOptionKeys;

import bisq.network.NetworkOptionKeys;
Expand Down

0 comments on commit bb20264

Please sign in to comment.