Index: trunk/grails-app/controllers/AssetDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/AssetDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/AssetDetailedController.groovy	(revision 375)
@@ -217,5 +217,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def assetInstance = Asset.get( params.id )
@@ -257,5 +257,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def assetInstance = Asset.get( params.id )
Index: trunk/grails-app/controllers/AssetSubItemDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/AssetSubItemDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/AssetSubItemDetailedController.groovy	(revision 375)
@@ -101,5 +101,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def assetSubItemInstance = AssetSubItem.get( params.id )
@@ -135,5 +135,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def assetSubItemInstance = AssetSubItem.get( params.id )
Index: trunk/grails-app/controllers/InventoryItemDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/InventoryItemDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/InventoryItemDetailedController.groovy	(revision 375)
@@ -56,5 +56,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         if(!InventoryItem.exists(params.id)) {
@@ -107,9 +107,9 @@
 
     def edit = {
-        
+
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
-        
+            params.action='edit'
+
         def inventoryItemInstance = InventoryItem.get( params.id )
 
Index: trunk/grails-app/controllers/MaintenancePolicyDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/MaintenancePolicyDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/MaintenancePolicyDetailedController.groovy	(revision 375)
@@ -21,5 +21,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def maintenancePolicyInstance = MaintenancePolicy.get( params.id )
@@ -55,5 +55,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def maintenancePolicyInstance = MaintenancePolicy.get( params.id )
Index: trunk/grails-app/controllers/ManufacturerDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/ManufacturerDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/ManufacturerDetailedController.groovy	(revision 375)
@@ -18,5 +18,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def manufacturerInstance = Manufacturer.get( params.id )
@@ -52,5 +52,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def manufacturerInstance = Manufacturer.get( params.id )
Index: trunk/grails-app/controllers/PersonController.groovy
===================================================================
--- trunk/grails-app/controllers/PersonController.groovy	(revision 374)
+++ trunk/grails-app/controllers/PersonController.groovy	(revision 375)
@@ -34,5 +34,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def person = Person.get(params.id)
@@ -86,5 +86,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def person = Person.get(params.id)
Index: trunk/grails-app/controllers/PictureDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/PictureDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/PictureDetailedController.groovy	(revision 375)
@@ -29,5 +29,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def picture = Picture.get( params.id )
@@ -70,5 +70,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def picture = Picture.get(params.id)
Index: trunk/grails-app/controllers/SupplierDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/SupplierDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/SupplierDetailedController.groovy	(revision 375)
@@ -18,5 +18,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def supplierInstance = Supplier.get( params.id )
@@ -52,5 +52,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def supplierInstance = Supplier.get( params.id )
Index: trunk/grails-app/controllers/TaskDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/TaskDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/TaskDetailedController.groovy	(revision 375)
@@ -222,5 +222,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def showTab = [:]
@@ -465,5 +465,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def taskInstance = Task.get( params.id )
Index: trunk/grails-app/controllers/TaskProcedureDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/TaskProcedureDetailedController.groovy	(revision 374)
+++ trunk/grails-app/controllers/TaskProcedureDetailedController.groovy	(revision 375)
@@ -35,5 +35,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Show)
-        { params.action='show' }
+            params.action='show'
 
         def taskProcedureInstance = TaskProcedure.get( params.id )
@@ -69,5 +69,5 @@
         // In the case of an actionSubmit button, rewrite action name from 'index'.
         if(params._action_Edit)
-        { params.action='edit' }
+            params.action='edit'
 
         def taskProcedureInstance = TaskProcedure.get( params.id )
