diff --git a/lib/licensee/projects/project.rb b/lib/licensee/projects/project.rb index 929ea9e..28a7873 100644 --- a/lib/licensee/projects/project.rb +++ b/lib/licensee/projects/project.rb @@ -155,14 +155,6 @@ module Licensee def load_file(_file) raise 'Not implemented' end - - def path_relative_to_root(path) - return path if is_a?(GitProject) || is_a?(GitHubProject) || path.nil? - - root = Pathname.new(@dir) - path = Pathname.new(path) - path.relative_path_from(root).to_s - end end end end