1
0
mirror of https://github.com/moodle/moodle.git synced 2025-03-30 13:32:50 +02:00
Eloy Lafuente (stronk7) bd5fdcfccd MDL-63422 general: review core loop / switch / case / continue
This commit reviews all continue uses in core happening within a
loop / switch / case hierarchy. This does not cover:

- Changes to libraries. Will be handled in another issue / commit.
- Uses out from loops, will be reviewed by other commit.

The policy followed has been:
- When possible, take rid of the continue.
- When clearly the intention was to jump to next element in loop
  change to continue 2
- When it was not clear, keep old behavior switching to break, no
  matter how weird the behavior may be.
2018-10-31 00:17:59 +01:00
..
2018-10-22 12:52:58 +02:00
2018-10-22 12:52:58 +02:00
2018-10-22 10:53:32 +08:00
2018-10-09 09:35:02 +08:00