blob: dbd658d8c48a3290464a8a034a4acc35c948db32 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Daniel Le Berre and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Daniel Le Berre - initial API and implementation
******************************************************************************/
package org.eclipse.equinox.p2.cudf.solver;
class Pair {
public final Object left, right;
Pair(Object left, Object right) {
this.left = left;
this.right = right;
}
public String toString() {
return "(" + left + "," + right + ")";
}
}