diff 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
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgParentChildMap.java	Thu Jul 11 17:54:08 2013 +0200
+++ b/src/org/tmatesoft/hg/repo/HgParentChildMap.java	Thu Jul 11 18:41:40 2013 +0200
@@ -50,6 +50,9 @@
  *   List<Nodei> immediateChildren = pw.directChildren(me);
  * </pre>
  * 
+ * <p>Note, this map represents a snapshot of repository state at specific point, and is not automatically
+ * updated/refreshed along with repository changes. I.e. any revision committed after this map was initialized
+ * won't be recognized as known.
  * 
  * <p> Perhaps, later may add alternative way to access (and reuse) map instance, Revlog#getParentWalker(), 
  * that instantiates and initializes ParentWalker, and keep SoftReference to allow its reuse.