do not try to merge stubs if version changed: reverted

This commit is contained in:
Dmitry Avdeev
2013-11-20 15:31:13 +04:00
parent 4ce8c5b19a
commit ceafea25aa
8 changed files with 32 additions and 58 deletions
@@ -33,7 +33,7 @@ public class StringIndex {
}
public void update(final String path, @Nullable String content, @Nullable String oldContent) throws StorageException {
myIndex.update(path.hashCode(), toInput(path, content), true).compute();
myIndex.update(path.hashCode(), toInput(path, content)).compute();
}
@Nullable