From 5d35cf217b8a18bd0079b3b769e82340e327345f Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Fri, 14 May 2021 19:54:30 +0000 Subject: [PATCH] style: run rubocop -a (#8654) Merge pull request 8654 --- lib/jekyll/cache.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/jekyll/cache.rb b/lib/jekyll/cache.rb index be9a1893..e688c2ed 100644 --- a/lib/jekyll/cache.rb +++ b/lib/jekyll/cache.rb @@ -163,7 +163,6 @@ module Jekyll # Load `path` from disk and return the result. # This MUST NEVER be called in Safe Mode - # rubocop:disable Security/MarshalLoad def load(path) raise unless disk_cache_enabled? @@ -172,7 +171,6 @@ module Jekyll cached_file.close value end - # rubocop:enable Security/MarshalLoad # Given a path and a value, save value to disk at path. # This should NEVER be called in Safe Mode