View | Details | Raw Unified | Return to bug 197105
Collapse All | Expand All

(-)src/org/eclipse/rse/internal/services/files/ftp/FTPService.java (+11 lines)
Lines 497-502 Link Here
497
				
497
				
498
				for(int i=0; i<_ftpFiles.length; i++)
498
				for(int i=0; i<_ftpFiles.length; i++)
499
				{
499
				{
500
					if(_ftpFiles[i]==null)
501
					{
502
						continue;
503
					}
504
					
505
					String rawListLine = _ftpFiles[i].getRawListing()+System.getProperty("line.separator"); //$NON-NLS-1$
506
					_ftpLoggingOutputStream.write(rawListLine.getBytes());
507
					
500
					FTPHostFile f = new FTPHostFile(parentPath, _ftpFiles[i]);
508
					FTPHostFile f = new FTPHostFile(parentPath, _ftpFiles[i]);
501
					if (isRightType(fileType,f)) {
509
					if (isRightType(fileType,f)) {
502
						String name = f.getName();
510
						String name = f.getName();
Lines 512-517 Link Here
512
						}
520
						}
513
					}
521
					}
514
				}
522
				}
523
				
524
				_ftpLoggingOutputStream.write(System.getProperty("line.separator").getBytes()); //$NON-NLS-1$
525
				
515
			}
526
			}
516
			catch (Exception e)
527
			catch (Exception e)
517
			{			
528
			{			

Return to bug 197105