IDEA-88587 'Annotate' action from popup menu in File History table is always disabled for Git

Fix default value for HistorySession#hasLocalSource: the source is local for most cases (except some cases in SVN).
This commit is contained in:
Kirill Likhodedov
2012-07-10 20:11:40 +04:00
parent 0f7790e6bc
commit 79b1f0f2b0
@@ -106,6 +106,6 @@ public abstract class VcsAbstractHistorySession implements VcsHistorySession {
@Override
public boolean hasLocalSource() {
return false;
return true;
}
}