Commit a0ac59cb authored by Konstantin Bulenkov's avatar Konstantin Bulenkov
Browse files

do not escape spaces (review by Ilya Kazakevich)

parent 07ddcd09
Showing with 1 addition and 1 deletion
+1 -1
......@@ -165,7 +165,7 @@ public class ConvertUsagesUtil {
*/
@NotNull
public static String escapeDescriptorName(@NotNull final String name) {
return name.replace(" ", "_").
return name.
replace(GROUP_SEPARATOR, '_').
replace(GROUPS_SEPARATOR, '_').
replace(GROUP_VALUE_SEPARATOR, '_')
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment