# HG changeset patch # User Vladimir Kvashin # Date 1454272444 -10800 # Branch release81 # Node ID 1b8d549aa64eba3ab12a43b753494869fe9b9365 # Parent e6a78d0b0996d321254d497542ba2e762b0b96f3 fixed #257788 - try to add ARM host (java.io.IOException diff -r e6a78d0b0996 -r 1b8d549aa64e dlight.remote.impl/src/org/netbeans/modules/remote/impl/fs/FileSystemCacheProviderImpl.java --- a/dlight.remote.impl/src/org/netbeans/modules/remote/impl/fs/FileSystemCacheProviderImpl.java Thu Jan 28 22:31:28 2016 +0000 +++ b/dlight.remote.impl/src/org/netbeans/modules/remote/impl/fs/FileSystemCacheProviderImpl.java Sun Jan 31 23:34:04 2016 +0300 @@ -59,8 +59,10 @@ protected String getCacheImpl(ExecutionEnvironment executionEnvironment) { String hostId = EnvUtils.toHostID(executionEnvironment); String userId = executionEnvironment.getUser(); - String path = Places.getCacheSubdirectory("remote-files").getAbsolutePath().replace('\\', '/') + '/' + hostId + '_' + userId + '/'; // NOI18N - path = path.replace(':', '_'); // paranoia? see iz #256627 + String prefix = Places.getCacheSubdirectory("remote-files").getAbsolutePath().replace('\\', '/'); // NOI18N + String postfix = "/" + hostId + '_' + userId + '/'; // NOI18N + postfix = postfix.replace(':', '_'); // paranoia? see iz #256627 + String path = prefix + postfix; return path; } }