blob: 8c89e5ec9514a1391359fa7f94601ef6f2194853 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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:
* IBM Corporation - Initial Implementation
*
*****************************************************************************/
package org.eclipse.ptp.remotetools.internal.common;
public class Debug {
public static void println(String s) {
// System.out.println(s);
}
public static void printErrorln(String s) {
// System.err.println(s);
}
public static void println2(String s) {
// System.out.println(s);
}
}