Index: trunk/grails-app/domain/InventoryMovement.groovy
===================================================================
--- trunk/grails-app/domain/InventoryMovement.groovy	(revision 199)
+++ trunk/grails-app/domain/InventoryMovement.groovy	(revision 210)
@@ -1,4 +1,2 @@
-import java.text.SimpleDateFormat
-
 class InventoryMovement {
     InventoryItem inventoryItem
@@ -19,6 +17,5 @@
 
     String toString() {
-        def date = new SimpleDateFormat("EEE, dd-MMM-yyyy").format(this.date)
-        "${this.quantity} ${inventoryMovementType.name} on ${date}"
+        "${this.quantity} ${inventoryMovementType.name} on ${date.format('EEE, dd-MMM-yyyy')}"
     }
 }
Index: trunk/grails-app/domain/TaskModification.groovy
===================================================================
--- trunk/grails-app/domain/TaskModification.groovy	(revision 199)
+++ trunk/grails-app/domain/TaskModification.groovy	(revision 210)
@@ -1,4 +1,2 @@
-import java.text.SimpleDateFormat
-
 class TaskModification {
     Person person
@@ -19,6 +17,5 @@
 
     String toString() {
-        def date = new SimpleDateFormat("EEE, dd-MMM-yyyy").format(this.date)
-        "${taskModificationType} on ${date} by ${person}."
+        "${taskModificationType} on ${date.format('EEE, dd-MMM-yyyy')} by ${person}."
     }
 }
Index: trunk/grails-app/domain/TaskRecurringSchedule.groovy
===================================================================
--- trunk/grails-app/domain/TaskRecurringSchedule.groovy	(revision 199)
+++ trunk/grails-app/domain/TaskRecurringSchedule.groovy	(revision 210)
@@ -1,3 +1,4 @@
 import org.codehaus.groovy.runtime.TimeCategory
+// the above will be deprecated and replaced by: groovy.time.TimeCategory
 
 class TaskRecurringSchedule {
