mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
[199568] Removing synchronized from internalGetChildren
This commit is contained in:
parent
bfb2e7d049
commit
fcb877ed59
1 changed files with 2 additions and 1 deletions
|
@ -28,6 +28,7 @@
|
||||||
* David McKnight (IBM) - [196662] hasChildren() should return false when the file doesn't exist
|
* David McKnight (IBM) - [196662] hasChildren() should return false when the file doesn't exist
|
||||||
* David McKnight (IBM) - [197784] Need to check if last separator is at 0
|
* David McKnight (IBM) - [197784] Need to check if last separator is at 0
|
||||||
* Kevin Doyle (IBM) - [198576] Renaming a folder directly under a Filter doesn't update children
|
* Kevin Doyle (IBM) - [198576] Renaming a folder directly under a Filter doesn't update children
|
||||||
|
* David McKnight (IBM) - [199568] Removing synchronized from internalGetChildren
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.files.ui.view;
|
package org.eclipse.rse.internal.files.ui.view;
|
||||||
|
@ -550,7 +551,7 @@ public class SystemViewRemoteFileAdapter
|
||||||
return internalGetChildren(context.getModelObject(), context.getFilterReference(), monitor);
|
return internalGetChildren(context.getModelObject(), context.getFilterReference(), monitor);
|
||||||
}
|
}
|
||||||
|
|
||||||
private synchronized Object[] internalGetChildren(IAdaptable element, ISystemFilterReference filterReference, IProgressMonitor monitor)
|
private Object[] internalGetChildren(IAdaptable element, ISystemFilterReference filterReference, IProgressMonitor monitor)
|
||||||
{
|
{
|
||||||
//System.out.println("Inside getChildren for: "+element);
|
//System.out.println("Inside getChildren for: "+element);
|
||||||
IRemoteFile file = (IRemoteFile) element;
|
IRemoteFile file = (IRemoteFile) element;
|
||||||
|
|
Loading…
Add table
Reference in a new issue