Mercurial > hg4j
comparison src/org/tmatesoft/hg/internal/IntVector.java @ 328:a674b8590362
Move file tree history to upper API level
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
|---|---|
| date | Wed, 05 Oct 2011 07:13:57 +0200 |
| parents | b11f6a08f748 |
| children | 694ebabb5cb3 |
comparison
equal
deleted
inserted
replaced
| 327:3f09b8c19142 | 328:a674b8590362 |
|---|---|
| 15 * contact TMate Software at support@hg4j.com | 15 * contact TMate Software at support@hg4j.com |
| 16 */ | 16 */ |
| 17 package org.tmatesoft.hg.internal; | 17 package org.tmatesoft.hg.internal; |
| 18 | 18 |
| 19 /** | 19 /** |
| 20 * | 20 * Vector of primitive values |
| 21 * | |
| 21 * @author Artem Tikhomirov | 22 * @author Artem Tikhomirov |
| 22 * @author TMate Software Ltd. | 23 * @author TMate Software Ltd. |
| 23 */ | 24 */ |
| 24 class IntVector { | 25 public class IntVector { |
| 25 | 26 |
| 26 private int[] data; | 27 private int[] data; |
| 27 private final int increment; | 28 private final int increment; |
| 28 private int count; | 29 private int count; |
| 29 | 30 |
