From cb159c345d115151d9d79a557990060e04289fc4 Mon Sep 17 00:00:00 2001 From: David McKnight Date: Tue, 22 Apr 2008 20:16:03 +0000 Subject: [PATCH] backing out synchronize --- .../internal/services/dstore/files/DStoreHostFile.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.services.dstore/src/org/eclipse/rse/internal/services/dstore/files/DStoreHostFile.java b/rse/plugins/org.eclipse.rse.services.dstore/src/org/eclipse/rse/internal/services/dstore/files/DStoreHostFile.java index 824421b480e..993f137f389 100644 --- a/rse/plugins/org.eclipse.rse.services.dstore/src/org/eclipse/rse/internal/services/dstore/files/DStoreHostFile.java +++ b/rse/plugins/org.eclipse.rse.services.dstore/src/org/eclipse/rse/internal/services/dstore/files/DStoreHostFile.java @@ -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;