Changeset 799 for trunk/grails-app/domain
- Timestamp:
- Feb 9, 2011, 6:11:00 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Task.groovy
r728 r799 61 61 } 62 62 63 String toString() {"${this.id} - ${this.description}"} 63 String toString() { 64 def s = "#${this.id} - " 65 if(this.primaryAsset) 66 s += "${primaryAsset.name}: " 67 s += "${this.description}" 68 } 69 64 70 }
Note: See TracChangeset
for help on using the changeset viewer.