summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/node/null.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/config/node/null.rb')
-rw-r--r--lib/gitlab/ci/config/node/null.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/lib/gitlab/ci/config/node/null.rb b/lib/gitlab/ci/config/node/null.rb
deleted file mode 100644
index 88a5f53f13c..00000000000
--- a/lib/gitlab/ci/config/node/null.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-module Gitlab
- module Ci
- class Config
- module Node
- ##
- # This class represents an undefined node.
- #
- # Implements the Null Object pattern.
- #
- class Null < Entry
- def value
- nil
- end
-
- def valid?
- true
- end
-
- def errors
- []
- end
-
- def specified?
- false
- end
-
- def relevant?
- false
- end
- end
- end
- end
- end
-end