Mercurial > jhg
comparison src/org/tmatesoft/hg/internal/IntMap.java @ 417:ccd7d25e5aea
New and better name for HgFileInformer - HgChangesetFileSneaker. Explain (comments) ties between HgManifest, HgDataFile, HgChangesetFileSneaker and reasons for method placement
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 22 Mar 2012 20:14:06 +0100 |
parents | ee8264d80747 |
children | 7bcfbc255f48 |
comparison
equal
deleted
inserted
replaced
416:d30083c80d52 | 417:ccd7d25e5aea |
---|---|
18 | 18 |
19 import java.util.Iterator; | 19 import java.util.Iterator; |
20 import java.util.Map; | 20 import java.util.Map; |
21 import java.util.Map.Entry; | 21 import java.util.Map.Entry; |
22 import java.util.NoSuchElementException; | 22 import java.util.NoSuchElementException; |
23 | |
24 import org.tmatesoft.hg.core.Nodeid; | |
25 | 23 |
26 | 24 |
27 /** | 25 /** |
28 * Map implementation that uses plain int keys and performs with log n effectiveness. | 26 * Map implementation that uses plain int keys and performs with log n effectiveness. |
29 * | 27 * |