Author: rmottola
Date: Fri May 30 14:35:38 2014
New Revision: 37927

URL: http://svn.gna.org/viewcvs/gnustep?rev=37927&view=rev
Log:
minor indent cleanup

Modified:
    apps/gworkspace/trunk/Operation/FileOpInfo.m

Modified: apps/gworkspace/trunk/Operation/FileOpInfo.m
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/gworkspace/trunk/Operation/FileOpInfo.m?rev=37927&r1=37926&r2=37927&view=diff
==============================================================================
--- apps/gworkspace/trunk/Operation/FileOpInfo.m        (original)
+++ apps/gworkspace/trunk/Operation/FileOpInfo.m        Fri May 30 14:35:38 2014
@@ -954,24 +954,28 @@
 
 - (void)doCopy
 {
-  while (1) {
-         CHECK_DONE;   
-         GET_FILENAME;   
-
-    if ((samename == NO) || (samename && [self removeExisting: fileinfo])) {
-           if ([fm copyPath: [source stringByAppendingPathComponent: filename]
-                                       toPath: [destination 
stringByAppendingPathComponent: filename]
-                                handler: self]) {
-        [procfiles addObject: filename];       
-      }
-    }
-         [files removeObject: fileinfo];       
-    RELEASE (fileinfo); 
-  }
-
-  if (([files count] == 0) || stopped) {
-    [self done];
-  }                                          
+  while (1)
+    {
+      CHECK_DONE;      
+      GET_FILENAME;   
+      
+      if ((samename == NO) || (samename && [self removeExisting: fileinfo]))
+        {
+          if ([fm copyPath: [source stringByAppendingPathComponent: filename]
+                    toPath: [destination stringByAppendingPathComponent: 
filename]
+                   handler: self])
+            {
+              [procfiles addObject: filename]; 
+            }
+        }
+      [files removeObject: fileinfo];  
+      RELEASE (fileinfo); 
+    }
+  
+  if (([files count] == 0) || stopped)
+    {
+      [self done];
+    }                                          
 }
 
 - (void)doLink


_______________________________________________
Gnustep-cvs mailing list
Gnustep-cvs@gna.org
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to