summaryrefslogtreecommitdiff
path: root/lib/chef/chef_fs
diff options
context:
space:
mode:
authorThom May <thom@chef.io>2016-04-14 15:15:22 +0100
committerThom May <thom@chef.io>2016-04-14 15:54:12 +0100
commit2d48106e6c6afa454ea7c7974de124e977b56112 (patch)
treef80228db1af5a51d6c0a5bbe87d09ff237b0d257 /lib/chef/chef_fs
parent2fe975c69a1abd8536e9f0158cb85d45f8c2f54b (diff)
downloadchef-2d48106e6c6afa454ea7c7974de124e977b56112.tar.gz
Move unused code into backcompat
Diffstat (limited to 'lib/chef/chef_fs')
-rw-r--r--lib/chef/chef_fs/file_system/repository/file_system_root_dir.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/chef/chef_fs/file_system/repository/file_system_root_dir.rb b/lib/chef/chef_fs/file_system/repository/file_system_root_dir.rb
deleted file mode 100644
index e2bb27cbc9..0000000000
--- a/lib/chef/chef_fs/file_system/repository/file_system_root_dir.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# Author:: John Keiser (<jkeiser@chef.io>)
-# Copyright:: Copyright 2012-2016, Chef Software Inc.
-# License:: Apache License, Version 2.0
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-require "chef/chef_fs/file_system/repository/file_system_entry"
-
-class Chef
- module ChefFS
- module FileSystem
- module Repository
- class FileSystemRootDir < FileSystemEntry
- def initialize(file_path)
- super("", nil, file_path)
- end
- end
- end
- end
- end
-end