Skip to content

Commit cd679c6

Browse files
committedJun 20, 2008
Only undef the id method on ACL and Owner if it is currently defined to play better with third party libraries
1 parent 1a052c6 commit cd679c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎lib/aws/s3/acl.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def build
385385
class Grantee
386386
include SelectiveAttributeProxy #:nodoc:
387387

388-
undef_method :id # Get rid of Object#id
388+
undef_method :id if method_defined?(:id) # Get rid of Object#id
389389

390390
def initialize(attributes = {})
391391
# Set default values for attributes that may not be passed in but we still want the object

‎lib/aws/s3/owner.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module S3
77
#
88
# You can retrieve the owner of the current account by calling Owner.current.
99
class Owner
10-
undef_method :id # Get rid of Object#id
10+
undef_method :id if method_defined?(:id) # Get rid of Object#id
1111
include SelectiveAttributeProxy
1212

1313
class << self

0 commit comments

Comments
 (0)