IDEA-66690 Made "Ignore whitespace differences in annotations" setting "false" for PyCharm by default (and "true" for other products)

This commit is contained in:
Konstantin Kolosovsky
2015-08-18 19:58:39 +03:00
parent 65afec3f4e
commit d42ca33aa7
@@ -16,6 +16,7 @@
package org.jetbrains.idea.svn;
import com.intellij.openapi.util.SystemInfo;
import com.intellij.util.PlatformUtils;
import com.intellij.util.xmlb.annotations.*;
import org.jetbrains.idea.svn.api.Depth;
@@ -75,7 +76,7 @@ public class SvnConfigurationState {
public boolean UPDATE_LOCK_ON_DEMAND;
public boolean IGNORE_SPACES_IN_MERGE;
public boolean CHECK_NESTED_FOR_QUICK_MERGE;
public boolean IGNORE_SPACES_IN_ANNOTATE = true;
public boolean IGNORE_SPACES_IN_ANNOTATE = !PlatformUtils.isPyCharm();
public boolean SHOW_MERGE_SOURCES_IN_ANNOTATE = true;
public boolean FORCE_UPDATE;
public boolean IGNORE_EXTERNALS;