Optimize imports

This commit is contained in:
Chris Beams 2014-11-22 10:18:21 +01:00
parent 5d1fb36069
commit 0bf7999e8d
No known key found for this signature in database
GPG key ID: 3D214F8F5BC5ED73
8 changed files with 1 additions and 9 deletions

View file

@ -22,8 +22,7 @@ import joptsimple.OptionParser;
import joptsimple.OptionSet; import joptsimple.OptionSet;
import org.springframework.util.StringUtils; import org.springframework.util.StringUtils;
import static java.lang.String.format; import static java.lang.String.*;
import static java.lang.String.join;
public abstract class BitsquareExecutable { public abstract class BitsquareExecutable {
public static final int EXIT_SUCCESS = 0; public static final int EXIT_SUCCESS = 0;

View file

@ -30,7 +30,6 @@ import joptsimple.OptionSet;
import static io.bitsquare.app.BitsquareEnvironment.*; import static io.bitsquare.app.BitsquareEnvironment.*;
import static io.bitsquare.msg.tomp2p.TomP2PMessageModule.*; import static io.bitsquare.msg.tomp2p.TomP2PMessageModule.*;
import static io.bitsquare.network.Node.*; import static io.bitsquare.network.Node.*;
import static java.lang.String.format;
public class BitsquareAppMain extends BitsquareExecutable { public class BitsquareAppMain extends BitsquareExecutable {

View file

@ -39,7 +39,6 @@ import javax.inject.Inject;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import javafx.scene.*;
import javafx.scene.control.*; import javafx.scene.control.*;
import javafx.scene.layout.*; import javafx.scene.layout.*;
import javafx.stage.Stage; import javafx.stage.Stage;

View file

@ -31,7 +31,6 @@ import javax.inject.Inject;
import javafx.beans.value.ChangeListener; import javafx.beans.value.ChangeListener;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import javafx.scene.*;
import javafx.scene.control.*; import javafx.scene.control.*;
public class FundsViewCB extends CachedViewCB { public class FundsViewCB extends CachedViewCB {

View file

@ -32,7 +32,6 @@ import javax.inject.Inject;
import javafx.beans.value.ChangeListener; import javafx.beans.value.ChangeListener;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import javafx.scene.*;
import javafx.scene.control.*; import javafx.scene.control.*;
public class PortfolioViewCB extends CachedViewCB { public class PortfolioViewCB extends CachedViewCB {

View file

@ -32,7 +32,6 @@ import javax.inject.Inject;
import javafx.beans.value.ChangeListener; import javafx.beans.value.ChangeListener;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import javafx.scene.*;
import javafx.scene.control.*; import javafx.scene.control.*;
public class SettingsViewCB extends CachedViewCB { public class SettingsViewCB extends CachedViewCB {

View file

@ -56,7 +56,6 @@ import java.util.Map;
import javax.inject.Inject; import javax.inject.Inject;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty; import javafx.beans.property.StringProperty;
import javafx.collections.FXCollections; import javafx.collections.FXCollections;

View file

@ -27,7 +27,6 @@ import com.google.inject.Guice;
import com.google.inject.Injector; import com.google.inject.Injector;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.net.URL;
import javafx.application.Application; import javafx.application.Application;
import javafx.stage.Stage; import javafx.stage.Stage;