Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. while (true) {
  2. if (conditionDateTo - conditionDateFrom > maxRangeDate) {
  3. downloadDataFromNBP(conditionDateFrom, conditionDateFrom.plus(93))
  4. conditionDateFrom = conditionDateFrom.plus(93)
  5. } else {
  6. downloadDataFromNBP(conditionDateFrom, conditionDateTo)
  7. break
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement