Files
gitlabhq/lib/gitlab
zenati c418261b2b No need to check if repository_ref is present
There is no need to check if `repository_ref` is present as:
```
      @repository_ref = if repository_ref.present?
                          repository_ref
                        else
                          nil
                        end
```

is as same as doing:

```
@repository_ref = repository_ref
```
2015-06-08 18:01:50 +02:00
..
2014-09-29 12:05:17 +03:00
2015-06-05 12:32:01 +02:00
2014-10-06 00:14:46 +02:00
2015-02-24 15:07:24 +01:00
2015-05-13 09:46:22 +02:00
2014-10-06 00:14:46 +02:00
2014-11-06 13:07:42 +02:00
2015-02-24 15:07:24 +01:00
2014-10-31 17:22:16 -07:00
2015-04-14 15:58:28 +02:00
2014-10-06 00:14:46 +02:00
2015-03-24 18:35:57 -07:00
2014-10-06 00:14:46 +02:00
2015-04-24 12:30:37 +02:00
2014-10-06 00:14:46 +02:00
2015-04-30 16:35:26 -04:00
2015-05-23 13:11:23 +03:00
2013-06-06 10:10:51 +09:00