diff options
author | Stan Hu <stanhu@gmail.com> | 2018-12-05 22:02:11 -0800 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2018-12-05 23:19:27 -0800 |
commit | e96fd232a628e9f5f008936b5db645412e33cfef (patch) | |
tree | f3694019bc8487f6e212ce16d42a6066fab03977 /app/models/namespace.rb | |
parent | fa3528ee5a0cedf10a05035ce5c713c3fea0ec6f (diff) | |
download | gitlab-ce-e96fd232a628e9f5f008936b5db645412e33cfef.tar.gz |
Remove unnecessary includes of ShellAdapter
Determined by running the script:
```
included = `git grep --name-only ShellAdapter`.chomp.split("\n")
used = `git grep --name-only gitlab_shell`.chomp.split("\n")
included - used
```
Diffstat (limited to 'app/models/namespace.rb')
-rw-r--r-- | app/models/namespace.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/models/namespace.rb b/app/models/namespace.rb index 8865c164b11..3c9b1d32a53 100644 --- a/app/models/namespace.rb +++ b/app/models/namespace.rb @@ -3,7 +3,6 @@ class Namespace < ActiveRecord::Base include CacheMarkdownField include Sortable - include Gitlab::ShellAdapter include Gitlab::VisibilityLevel include Routable include AfterCommitQueue |