cloudfoundry/cloud_controller_ng

View on GitHub
app/actions/annotation_delete.rb

Summary

Maintainability
A
0 mins
Test Coverage
module VCAP::CloudController
  class AnnotationDelete
    def self.delete(annotations)
      annotations.each(&:destroy)
    end
  end
end