mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
do not stick multiple params (IDEA-74310)
This commit is contained in:
@@ -814,7 +814,7 @@ public class Messages {
|
||||
textField.setText(textArea.getText());
|
||||
}
|
||||
});
|
||||
String s = textField.getText().replaceAll("[\\ ]*=[\\ ]*", "=");
|
||||
String s = textField.getText().replaceAll("[ ]*=[ ]*", "=").replaceAll("\\-", "\\ \\-");
|
||||
List<String> lines = StringUtil.splitHonorQuotes(s, ' ');
|
||||
textArea.setText(StringUtil.join(lines, "\n"));
|
||||
InsertPathAction.copyFromTo(textField, textArea);
|
||||
|
||||
Reference in New Issue
Block a user