Removed dead code

This commit is contained in:
7u83 2018-12-21 09:38:17 +01:00
parent 36171e0872
commit bc687c9b88
1 changed files with 1 additions and 19 deletions

View File

@ -61,27 +61,9 @@ public class AssetPair {
public AssetPair(World world, String asset, String currency){
this.asset = world.getAssetBySymbol(asset);
this.currency = world.getAssetBySymbol(asset);
this.currency = world.getAssetBySymbol(currency);
}
protected HashMap<Order.Type, SortedSet<Order>> order_books;
public final void reset() {
order_books = new HashMap();
// Create an order book for each order type
for (Order.Type type : Order.Type.values()) {
// order_books.put(type, new TreeSet(new Exchange.OrderComparator(type)));
order_books.put(type, new TreeSet<>());
}
// quoteHistory = new TreeSet();
// ohlc_data = new HashMap();
}
@Override
public boolean equals(Object o) {