blob: 1a8599f6b9976cc05531fe32a0e66ba9f8788801 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.constructor;
public class Tuple<T, K> {
private final T _1;
private final K _2;
public Tuple(T _1, K _2) {
this._1 = _1;
this._2 = _2;
}
public K _2() {
return _2;
}
public T _1() {
return _1;
}
}