summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-07-27 12:32:45 -0700
committerTim Smith <tsmith84@gmail.com>2020-07-27 12:32:45 -0700
commit9b565972c143a7fe39d1f0d63c42551bab8a541c (patch)
treef32ba7e19f3739b2b6eca9fd7007b430c6fd7580
parent20052aba8982b37ea20fd128d7dd52c5527d2d79 (diff)
downloadchef-9b565972c143a7fe39d1f0d63c42551bab8a541c.tar.gz
Mark a private method as private with yard
Make sure this stays out of docs Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/handler.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/handler.rb b/lib/chef/handler.rb
index 6622e981a0..97562ea31b 100644
--- a/lib/chef/handler.rb
+++ b/lib/chef/handler.rb
@@ -240,6 +240,8 @@ class Chef
# This ensures that all handlers get a chance to run even if one fails.
# This method should not be overridden by subclasses unless you know what
# you're doing.
+ #
+ # @api private
def run_report_safely(run_status)
run_report_unsafe(run_status)
rescue Exception => e