IDEA-184352 java.io.FileNotFoundException - it was decided to keep the scheme prefix (IDEA-CR-30232)

This commit is contained in:
Egor Ushakov
2018-03-07 15:40:18 +03:00
parent 17d5718a16
commit 8025e6a792
@@ -621,7 +621,7 @@ public class DebuggerManagerImpl extends DebuggerManagerEx implements Persistent
File file = FileUtil.createTempFile("capture", ".props");
try (FileOutputStream out = new FileOutputStream(file)) {
properties.store(out, null);
return StringUtil.trimStart(file.toURI().toASCIIString(), "file:");
return file.toURI().toASCIIString();
}
}
catch (IOException e) {