Buisness logic docs packages

This commit is contained in:
Filip Izydorczyk
2021-01-15 16:24:29 +01:00
parent 21983fe4f7
commit bf7d0c7dbc
12 changed files with 58 additions and 3 deletions

@ -79,7 +79,8 @@ public class MatchData {
* Exchanges 12:00 and 12:00
*
* @param m1 MatchData instance to compare to
* @return int <0 if m1 is "less than", 0 if it's equal and >0 otherwise
* @return int less than 0 if m1 is "less than", 0 if it's equal and more than 0
* otherwise
*/
public int compare(MatchData m1) {
return Long.compare(m1.getExchangesMsValue(), this.getExchangesMsValue());