summaryrefslogtreecommitdiff
path: root/lib/chef/exceptions.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-11-14 14:34:02 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2016-11-14 14:34:02 -0800
commitf144a985e44a8f3acf0275eeeae6739de200d0f8 (patch)
tree2bbe49bc8e2f7a54fbdf887ba27a2a656c178753 /lib/chef/exceptions.rb
parented93e0fb1644643cb0d064776b3283401dfba9a7 (diff)
downloadchef-f144a985e44a8f3acf0275eeeae6739de200d0f8.tar.gz
fixes Style/Semicolon coplcg/style-semicolon
these all seem like useless uses of semicolons. Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/exceptions.rb')
-rw-r--r--lib/chef/exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/exceptions.rb b/lib/chef/exceptions.rb
index 7126323ff7..c933841726 100644
--- a/lib/chef/exceptions.rb
+++ b/lib/chef/exceptions.rb
@@ -262,7 +262,7 @@ class Chef
class ChildConvergeError < RuntimeError; end
- class DeprecatedFeatureError < RuntimeError;
+ class DeprecatedFeatureError < RuntimeError
def initalize(message)
super("#{message} (raising error due to treat_deprecation_warnings_as_errors being set)")
end