mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
better path
This commit is contained in:
@@ -35,7 +35,8 @@ public class Paths {
|
||||
}
|
||||
|
||||
public static File getDataStorageRoot(Project project) {
|
||||
return new File(getInstance().mySystemRoot, project.getProjectName().toLowerCase(Locale.US) + Integer.toHexString(project.getLocationHash()));
|
||||
final String name = project.getProjectName().toLowerCase(Locale.US);
|
||||
return new File(getInstance().mySystemRoot, name + "_" + Integer.toHexString(project.getLocationHash()));
|
||||
}
|
||||
|
||||
public static URI toURI(String localPath) {
|
||||
|
||||
Reference in New Issue
Block a user