1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +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)
{
synchronized (attributes){
String[] str = attributes.split("\\"+IServiceConstants.TOKEN_SEPARATOR); //$NON-NLS-1$
if (str.length > index){
return str[index];
}
String[] str = attributes.split("\\"+IServiceConstants.TOKEN_SEPARATOR); //$NON-NLS-1$
if (str.length > index){
return str[index];
}
}
return null;