Commit d6604327 authored by Samuel Giddins's avatar Samuel Giddins

[Installer] Remove dead code

parent 2e892140
...@@ -141,7 +141,6 @@ module Pod ...@@ -141,7 +141,6 @@ module Pod
UI.section 'Analyzing dependencies' do UI.section 'Analyzing dependencies' do
analyze(analyzer) analyze(analyzer)
validate_build_configurations validate_build_configurations
prepare_for_legacy_compatibility
clean_sandbox clean_sandbox
end end
end end
...@@ -243,17 +242,6 @@ module Pod ...@@ -243,17 +242,6 @@ module Pod
end end
end end
# Prepares the Pods folder in order to be compatible with the most recent
# version of CocoaPods.
#
# @return [void]
#
def prepare_for_legacy_compatibility
# move_target_support_files_if_needed
# move_Local_Podspecs_to_Podspecs_if_needed
# move_pods_to_sources_folder_if_needed
end
# @return [void] In this step we clean all the folders that will be # @return [void] In this step we clean all the folders that will be
# regenerated from scratch and any file which might not be # regenerated from scratch and any file which might not be
# overwritten. # overwritten.
......
...@@ -99,7 +99,6 @@ module Pod ...@@ -99,7 +99,6 @@ module Pod
config.skip_repo_update = true config.skip_repo_update = true
@installer.unstub(:resolve_dependencies) @installer.unstub(:resolve_dependencies)
@installer.stubs(:validate_build_configurations) @installer.stubs(:validate_build_configurations)
@installer.stubs(:prepare_for_legacy_compatibility)
@installer.stubs(:clean_sandbox) @installer.stubs(:clean_sandbox)
def @installer.run_source_provider_hooks def @installer.run_source_provider_hooks
@hook_called = true @hook_called = true
...@@ -125,7 +124,6 @@ module Pod ...@@ -125,7 +124,6 @@ module Pod
@installer.podfile.stubs(:plugins).returns(plugins_hash) @installer.podfile.stubs(:plugins).returns(plugins_hash)
@installer.unstub(:resolve_dependencies) @installer.unstub(:resolve_dependencies)
@installer.stubs(:validate_build_configurations) @installer.stubs(:validate_build_configurations)
@installer.stubs(:prepare_for_legacy_compatibility)
@installer.stubs(:clean_sandbox) @installer.stubs(:clean_sandbox)
@installer.stubs(:ensure_plugins_are_installed!) @installer.stubs(:ensure_plugins_are_installed!)
@installer.stubs(:analyze) @installer.stubs(:analyze)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment