Mercurial > jhg
comparison src/org/tmatesoft/hg/util/Pair.java @ 460:5311e041d2dd
Removed 'experimental' tag from Pair
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 20 Jun 2012 16:49:43 +0200 |
parents | b015f3918120 |
children |
comparison
equal
deleted
inserted
replaced
459:55e9588b84b8 | 460:5311e041d2dd |
---|---|
14 * the terms of a license other than GNU General Public License | 14 * the terms of a license other than GNU General Public License |
15 * contact TMate Software at support@hg4j.com | 15 * contact TMate Software at support@hg4j.com |
16 */ | 16 */ |
17 package org.tmatesoft.hg.util; | 17 package org.tmatesoft.hg.util; |
18 | 18 |
19 import org.tmatesoft.hg.internal.Experimental; | |
20 | 19 |
21 /** | 20 /** |
22 * Nothing but a holder for two values. | 21 * Nothing but a holder for two values. |
23 * | 22 * |
24 * @author Artem Tikhomirov | 23 * @author Artem Tikhomirov |
25 * @author TMate Software Ltd. | 24 * @author TMate Software Ltd. |
26 */ | 25 */ |
27 @Experimental | |
28 public final class Pair<T1,T2> { | 26 public final class Pair<T1,T2> { |
29 private final T1 value1; | 27 private final T1 value1; |
30 private final T2 value2; | 28 private final T2 value2; |
31 | 29 |
32 public Pair(T1 v1, T2 v2) { | 30 public Pair(T1 v1, T2 v2) { |