Remove comment (question answered)

This commit is contained in:
ghubstan 2021-08-11 11:29:17 -03:00
parent 1a7ad0be0d
commit 713867b990
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -53,8 +53,8 @@ import static bisq.core.offer.OfferPayload.Direction.BUY;
public class OfferBook {
private final OfferBookService offerBookService;
private final ObservableList<OfferBookListItem> offerBookListItems = FXCollections.observableArrayList();
private final Map<String, Integer> buyOfferCountMap = new HashMap<>(); // TODO what is this for?
private final Map<String, Integer> sellOfferCountMap = new HashMap<>(); // TODO what is this for?
private final Map<String, Integer> buyOfferCountMap = new HashMap<>();
private final Map<String, Integer> sellOfferCountMap = new HashMap<>();
private final FilterManager filterManager;
///////////////////////////////////////////////////////////////////////////////////////////