Mercurial > jhg
comparison src/org/tmatesoft/hg/internal/IntMap.java @ 471:7bcfbc255f48
Merge changes from smartgit3 branch into 1.1 stream
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 11 Jul 2012 20:40:47 +0200 |
parents | ccd7d25e5aea 2e402c12ebc6 |
children | 4ea0351ca878 |
comparison
equal
deleted
inserted
replaced
470:31bd09da0dcf | 471:7bcfbc255f48 |
---|---|
22 import java.util.NoSuchElementException; | 22 import java.util.NoSuchElementException; |
23 | 23 |
24 | 24 |
25 /** | 25 /** |
26 * 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. |
27 * May contain null values | |
27 * | 28 * |
28 * @author Artem Tikhomirov | 29 * @author Artem Tikhomirov |
29 * @author TMate Software Ltd. | 30 * @author TMate Software Ltd. |
30 */ | 31 */ |
31 public class IntMap<V> { | 32 public class IntMap<V> { |