Jan Chaloupka
70c74fbe4b
Commit cd7d78b696
replaced use of
...
util.CheckErr(err)
with
if err != nil {
return err
}
One replacement is incorrent. The current call of resource.NewBuilder is returned in r variable. Which was tested with util.CheckErr(r.Err()) before cd7d78b696
commit. It was replaced by
if err != nil {
return err
}
which is incorrect as err is not set by resource.NewBuilder call. The correct use is
err := r.Err()
if err != nil {
return err
}
2015-09-09 12:40:55 +02:00
..
2015-09-04 18:01:32 -07:00
2015-09-05 22:30:47 +08:00
2015-09-04 18:01:32 -07:00
2015-09-01 08:35:57 -04:00
2015-09-03 21:56:45 -05:00
2015-09-04 18:01:32 -07:00
2015-09-03 12:00:21 +08:00
2015-08-20 10:57:28 +08:00
2015-09-04 18:01:32 -07:00
2015-08-31 16:37:44 -07:00
2015-08-18 10:23:03 -07:00
2015-09-01 08:35:57 -04:00
2015-09-04 18:01:32 -07:00
2015-09-01 08:35:57 -04:00
2015-08-18 10:23:03 -07:00
2015-09-01 08:35:57 -04:00
2015-09-04 18:01:32 -07:00
2015-09-03 12:00:21 +08:00
2015-08-18 10:23:03 -07:00
2015-09-07 15:17:17 +08:00
2015-09-04 18:01:32 -07:00
2015-09-09 12:40:55 +02:00
2015-09-04 18:01:32 -07:00
2015-09-07 15:17:17 +08:00
2015-08-18 10:23:03 -07:00
2015-09-03 16:36:27 -07:00
2015-08-08 22:31:48 +01:00
2015-08-18 10:23:03 -07:00
2015-09-01 08:35:57 -04:00
2015-09-04 18:01:32 -07:00
2015-09-03 12:00:21 +08:00
2015-08-12 19:56:23 +00:00
2015-08-18 10:23:03 -07:00
2015-09-01 08:35:57 -04:00
2015-09-01 08:35:57 -04:00
2015-09-03 20:29:58 +08:00
2015-09-08 14:31:29 +08:00
2015-09-08 14:31:29 +08:00
2015-09-01 08:35:57 -04:00
2015-09-01 08:35:57 -04:00
2015-08-26 15:00:28 +08:00