do not try to merge stubs if version changed: take three

This commit is contained in:
Dmitry Avdeev
2013-11-29 13:24:50 +04:00
parent bb941b0e60
commit c2b9a6ecb3
9 changed files with 31 additions and 18 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