From aadd465712f461e0e45cc2af1ddc2abed92af923 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 16 Jul 2016 22:16:41 +0100 Subject: [PATCH] compat/xcode: cleanup style. --- Library/Homebrew/compat/xcode.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Library/Homebrew/compat/xcode.rb b/Library/Homebrew/compat/xcode.rb index 3dd7f021cb..69abbf4b13 100644 --- a/Library/Homebrew/compat/xcode.rb +++ b/Library/Homebrew/compat/xcode.rb @@ -1,10 +1,11 @@ module OS module Mac module Xcode - extend self - - def provides_autotools? - version < "4.3" + class << self + def provides_autotools? + odeprecated "OS::Mac::Xcode.provides_autotools?" + version < "4.3" + end end end end