1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Match convention to use Ruby semantics for predicates

This commit is contained in:
Kasper Timm Hansen 2019-10-12 02:48:42 +02:00
parent 493edf044f
commit cd30ec1fe5
No known key found for this signature in database
GPG key ID: 191153215EDA53D8

View file

@ -136,7 +136,7 @@ module ActiveStorage
end
def public?
!!@public
@public
end
private