mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-184352 java.io.FileNotFoundException - it was decided to keep the scheme prefix (IDEA-CR-30232)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user