in vault-server/src/jetbrains/buildServer/buildTriggers/vcs/vault/VaultChangeCollector.java [39:52]
public VaultChangeCollector(@NotNull VaultConnection connection,
@NotNull String fromVersion,
@NotNull String toVersion,
@Nullable String targetPath) {
myConnection = connection;
myFromVersion = fromVersion;
myToVersion = toVersion;
myTargetPath = StringUtil.notNullize(targetPath);
myPathHistory = new VaultPathHistory();
myIsFileCache = new HashMap<String, Boolean>();
myDisplayVersionCache = new HashMap<String, String>();
myBranchedPaths = new ArrayList<String>();
}