1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-17 05:55:22 +02:00

backing out synchronize

This commit is contained in:
David McKnight 2008-04-22 20:16:03 +00:00
parent 2280c34837
commit cb159c345d

View file

@ -354,11 +354,9 @@ public class DStoreHostFile implements IHostFile, IHostFilePermissionsContainer
{ {
if (attributes != null) if (attributes != null)
{ {
synchronized (attributes){ String[] str = attributes.split("\\"+IServiceConstants.TOKEN_SEPARATOR); //$NON-NLS-1$
String[] str = attributes.split("\\"+IServiceConstants.TOKEN_SEPARATOR); //$NON-NLS-1$ if (str.length > index){
if (str.length > index){ return str[index];
return str[index];
}
} }
} }
return null; return null;