minor whitespace coding convention cleanup
diff --git a/src/packages/xdc/rta/Recap.java b/src/packages/xdc/rta/Recap.java
index 79a32cd..f48be9b 100644
--- a/src/packages/xdc/rta/Recap.java
+++ b/src/packages/xdc/rta/Recap.java
@@ -74,7 +74,7 @@
         debugPrint("Recap: Original path to recap file = " + recapPath);
         if ((new File(recapPath)).exists()) {
             debugPrint("Recap: Found recap file at: " + recapPath);
-            return(recapPath);
+            return (recapPath);
         }
 
         /*
@@ -89,7 +89,7 @@
                 /* If a valid path was found, return it. */
                 if ((newPath != null) && (new File(newPath)).exists()) {
                     debugPrint("Recap: Found recap file at: " + newPath);
-                    return(newPath);
+                    return (newPath);
                 }
             }
         }
@@ -102,7 +102,7 @@
         debugPrint("Recap: Checking relative path: " + newRecapPath);
         if (java.io.File(newRecapPath).exists()) {
             debugPrint("Recap: Found recap file at: " + newRecapPath);
-            return(newRecapPath);
+            return (newRecapPath);
         }
         */
         /* Check for the recap file along a search path */
@@ -126,7 +126,7 @@
                 debugPrint("Recap: Checking in " + cf +
                                    " ...");
                 if ((new File(cf)).exists()) {
-                    return(cf);
+                    return (cf);
                 }
             }
             throw (new Exception(cantFind(recapBase, recapPath, cwd)));
@@ -154,7 +154,7 @@
      */
     private static String cantFind(String filename, String origPath, String cwd)
     {
-        return("Cannot find the required file " + filename +  
+        return ("Cannot find the required file " + filename +  
                ". The original path to the file does not exist:\n"+ 
                "    " + origPath + 
                "\n\nIf the file is missing, please rebuild the associated " +