Changeset 723 for trunk/grails-app/domain/Asset.groovy
- Timestamp:
- Nov 28, 2010, 12:05:27 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Asset.groovy
r704 r723 53 53 if(ids instanceof String) { 54 54 if(ids.isInteger()) 55 idList << ids.to Integer()55 idList << ids.toLong() 56 56 } 57 57 else { 58 58 ids.each() { 59 59 if(it.isInteger()) 60 idList << it.to Integer()60 idList << it.toLong() 61 61 } 62 62 }
Note: See TracChangeset
for help on using the changeset viewer.