comparison src/org/tmatesoft/hg/repo/HgParentChildMap.java @ 668:d25f0324a27a

Delete bundle with push/pull changes once command completes successfully. Test for bundle generator
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 11 Jul 2013 18:41:40 +0200
parents 46b56864b483
children d2552e6a5af6
comparison
equal deleted inserted replaced
667:fba85bc1dfb8 668:d25f0324a27a
48 * 48 *
49 * Nodeid me = Nodeid.fromAscii("..."); 49 * Nodeid me = Nodeid.fromAscii("...");
50 * List<Nodei> immediateChildren = pw.directChildren(me); 50 * List<Nodei> immediateChildren = pw.directChildren(me);
51 * </pre> 51 * </pre>
52 * 52 *
53 * <p>Note, this map represents a snapshot of repository state at specific point, and is not automatically
54 * updated/refreshed along with repository changes. I.e. any revision committed after this map was initialized
55 * won't be recognized as known.
53 * 56 *
54 * <p> Perhaps, later may add alternative way to access (and reuse) map instance, Revlog#getParentWalker(), 57 * <p> Perhaps, later may add alternative way to access (and reuse) map instance, Revlog#getParentWalker(),
55 * that instantiates and initializes ParentWalker, and keep SoftReference to allow its reuse. 58 * that instantiates and initializes ParentWalker, and keep SoftReference to allow its reuse.
56 * 59 *
57 * @see HgRevisionMap 60 * @see HgRevisionMap