remove unused method

This commit is contained in:
Ben Balter 2018-08-23 16:59:56 -04:00
parent 73c71ab844
commit 93c959c264
No known key found for this signature in database
GPG Key ID: DBB67C246AD356C4
1 changed files with 0 additions and 8 deletions

View File

@ -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