# File lib/facets/more/cut.rb, line 272
  def method_added( method )
    cuts.each do |cut|
      next unless points = cut.join
      points.each do |advice, pointcut|
        if pointcut[method.to_s]
          cut.join( advice => method )
        end
      end
    end
  end