Do not apply commit message inspections during rebase

Currently commit message inspections do not track possible comments in commit message. And thus they do not make much sense during rebase (where commit message is provided together with comments).
This commit is contained in:
Konstantin Kolosovsky
2017-06-25 15:40:48 +03:00
parent 52924622b5
commit f99da089c3
@@ -43,7 +43,7 @@ class GitRebaseUnstructuredEditor extends DialogWrapper {
myRootLabel = new JBLabel("Git Root: " + root.getPresentableUrl());
myTextEditor = new CommitMessage(project, false, false, true);
myTextEditor = new CommitMessage(project, false, false, false);
myTextEditor.setText(initialText);
myTextEditor.getEditorField().setCaretPosition(0);
init();