Javi Martín
eac7427755
Remove line auto-assigning a variable to nil
...
This is one of the most strange behaviours in ruby: if a variable
doesn't exist, assigning to itself will return `nil`.
So a line like:
mdmkdfm = ooops if mdmkdfm.respond_to?(:uiqpior)
Surprisingly will not raise any errors: the nonexistent `mdmkdfm`
variable will be evaluated to `nil`, `mdmkdfm.respond_to?(:uiqpior)`
will evaluate to `nil.respond_to?(:uiqpior)`, which will return `false`,
and then the line will be evaluated as `mdmkdfm = ooops if false`, which
will return `nil`.
Maybe in the future Ruby will change this behaviour. We hope CONSUL is
now in better shape if that ever happens :).
2019-09-29 22:52:53 +02:00
..
2019-07-29 13:07:24 +02:00
2016-05-04 15:21:20 +02:00
2019-04-02 19:46:16 +02:00
2019-09-10 21:04:56 +02:00
2019-04-23 17:12:47 +02:00
2019-05-31 15:43:06 +02:00
2019-09-10 21:43:38 +02:00
2019-09-10 21:04:56 +02:00
2019-09-10 21:43:39 +02:00
2019-02-20 13:07:08 +01:00
2019-09-10 21:04:56 +02:00
2019-09-10 20:02:15 +02:00
2019-06-12 13:06:20 +02:00
2018-09-17 20:28:55 +02:00
2017-12-14 13:50:42 +01:00
2019-01-02 12:50:01 +01:00
2017-01-20 18:46:57 +01:00
2019-03-15 09:26:49 +01:00
2019-09-10 20:02:15 +02:00
2019-06-04 11:50:09 +02:00
2019-09-23 10:51:25 +02:00
2019-06-12 10:17:31 +02:00
2019-05-14 18:34:50 +02:00
2019-03-19 19:45:34 +01:00
2019-09-10 20:02:15 +02:00
2019-09-10 21:04:56 +02:00
2019-03-15 09:26:49 +01:00
2019-09-10 21:04:56 +02:00
2019-09-10 21:04:56 +02:00
2019-09-10 21:04:56 +02:00
2019-09-23 10:51:25 +02:00
2019-03-15 09:26:49 +01:00
2019-09-10 21:43:38 +02:00
2019-03-27 15:22:14 +01:00
2018-10-05 18:08:41 +02:00
2019-06-05 17:02:59 +02:00
2018-07-02 17:41:22 +02:00
2019-09-10 20:02:15 +02:00
2019-01-24 17:39:56 +01:00
2016-11-15 11:18:43 +01:00
2019-03-28 15:50:34 +01:00
2019-09-10 21:04:56 +02:00
2019-05-30 17:22:41 +02:00
2019-06-12 19:44:14 +02:00
2019-09-11 19:45:19 +02:00
2019-09-10 21:04:56 +02:00
2019-06-27 09:21:19 +02:00
2019-09-10 21:04:56 +02:00
2019-09-10 21:04:56 +02:00
2019-09-10 20:02:15 +02:00
2019-07-29 13:10:09 +02:00
2019-09-10 21:43:39 +02:00
2019-09-29 22:52:53 +02:00
2019-03-15 09:26:49 +01:00
2017-01-05 09:43:40 +01:00
2019-06-27 09:19:36 +02:00
2019-06-12 16:23:40 +02:00
2019-03-15 09:26:49 +01:00
2019-07-02 17:15:39 +02:00
2018-02-21 11:46:30 +01:00
2019-06-12 16:23:40 +02:00
2019-09-10 21:04:56 +02:00
2019-09-10 21:04:56 +02:00
2019-03-22 16:15:48 +01:00
2019-09-10 21:04:56 +02:00
2019-09-25 12:43:44 +02:00