make dom modification count increment at least in cases when clients expect it (EA-26855, EA-26568)

This commit is contained in:
peter
2011-04-21 15:10:30 +02:00
parent 4160cdbc15
commit 685260bcc4
@@ -473,7 +473,7 @@ public final class DomManagerImpl extends DomManager {
}
public long getModificationCount() {
return myModificationCount;
return myModificationCount + PsiManager.getInstance(myProject).getModificationTracker().getOutOfCodeBlockModificationCount();
}
public void performAtomicChange(@NotNull Runnable change) {