diff options
author | Robert Speicher <rspeicher@gmail.com> | 2016-03-24 13:23:47 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2016-03-24 13:23:47 -0400 |
commit | 8558483417c75da5d636f65935668c230678e032 (patch) | |
tree | 3b7404f416f860cdf35d42cabd3bd2060cc6a936 /lib/banzai/pipeline | |
parent | 6b95be1ddd144e24a61564349fa550b3a98336c7 (diff) | |
download | gitlab-ce-8558483417c75da5d636f65935668c230678e032.tar.gz |
Remove redundant `require`s from Banzai filesrs-banzai-requires
We're trying to avoid circular dependency errors.
Diffstat (limited to 'lib/banzai/pipeline')
-rw-r--r-- | lib/banzai/pipeline/base_pipeline.rb | 2 | ||||
-rw-r--r-- | lib/banzai/pipeline/wiki_pipeline.rb | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/lib/banzai/pipeline/base_pipeline.rb b/lib/banzai/pipeline/base_pipeline.rb index f60966c3c0f..321fd5bbe14 100644 --- a/lib/banzai/pipeline/base_pipeline.rb +++ b/lib/banzai/pipeline/base_pipeline.rb @@ -1,5 +1,3 @@ -require 'html/pipeline' - module Banzai module Pipeline class BasePipeline diff --git a/lib/banzai/pipeline/wiki_pipeline.rb b/lib/banzai/pipeline/wiki_pipeline.rb index 9b4ff0f0f80..0b5a9e0b2b8 100644 --- a/lib/banzai/pipeline/wiki_pipeline.rb +++ b/lib/banzai/pipeline/wiki_pipeline.rb @@ -1,5 +1,3 @@ -require 'banzai' - module Banzai module Pipeline class WikiPipeline < FullPipeline |