mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
more correct unquote fix (IDEA-69584)
This commit is contained in:
@@ -156,10 +156,10 @@ public class CommandLineProcessor {
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (StringUtil.isQuotedString(arg)) {
|
||||
arg = StringUtil.stripQuotesAroundValue(arg);
|
||||
}
|
||||
if (line != -1) {
|
||||
if (StringUtil.isQuotedString(arg)) {
|
||||
arg = StringUtil.stripQuotesAroundValue(arg);
|
||||
}
|
||||
final VirtualFile virtualFile = LocalFileSystem.getInstance().refreshAndFindFileByPath(arg);
|
||||
if (virtualFile != null) {
|
||||
lastOpenedProject = doOpenFile(virtualFile, line);
|
||||
|
||||
Reference in New Issue
Block a user