Commit b8636fb1 authored by Vladimir Krivosheev's avatar Vladimir Krivosheev
Browse files

IDEA-136683 user should be able to use the same config dir for IDEA 14.0 and...

IDEA-136683 user should be able to use the same config dir for IDEA 14.0 and IDEA 14.1 — read description as empty string if omitted
parent 711c1147
Branches unavailable Tags unavailable
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -202,7 +202,7 @@ public class QuickList implements ExternalizableScheme {
myDisplayName = element.getAttributeValue(DISPLAY_NAME_TAG);
myDescription = element.getAttributeValue(DESCRIPTION_TAG);
myDescription = element.getAttributeValue(DESCRIPTION_TAG, "");
myReadonly = Boolean.valueOf(element.getAttributeValue(READONLY_TAG)).booleanValue();
......
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