summaryrefslogtreecommitdiff
path: root/lib/chef/chef_fs/file_system
diff options
context:
space:
mode:
authorJohn Keiser <jkeiser@opscode.com>2014-12-10 14:48:06 -0800
committerJohn Keiser <jkeiser@opscode.com>2014-12-10 14:59:09 -0800
commite809bb40b1340309c86edac9fb5cf7f179f8f7ec (patch)
tree4ee806238e312a25cf56798a1cb4827e289a9297 /lib/chef/chef_fs/file_system
parent45693bf5a284dfb8675f3c57d64c9ccf817f217d (diff)
downloadchef-jk/2596.tar.gz
Fix #2596: parse instead of from_jsonjk/2596
Diffstat (limited to 'lib/chef/chef_fs/file_system')
-rw-r--r--lib/chef/chef_fs/file_system/chef_repository_file_system_entry.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/chef_fs/file_system/chef_repository_file_system_entry.rb b/lib/chef/chef_fs/file_system/chef_repository_file_system_entry.rb
index 9acfe4b936..0b14750744 100644
--- a/lib/chef/chef_fs/file_system/chef_repository_file_system_entry.rb
+++ b/lib/chef/chef_fs/file_system/chef_repository_file_system_entry.rb
@@ -64,7 +64,7 @@ class Chef
end
def minimize(file_contents, entry)
- object = Chef::JSONCompat.from_json(file_contents)
+ object = Chef::JSONCompat.parse(file_contents)
object = data_handler.normalize(object, entry)
object = data_handler.minimize(object, entry)
Chef::JSONCompat.to_json_pretty(object)