1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Remove a couple of StreamMonitor classes (unused)

Change-Id: I13224ff79440fc181ab7128d7620ca2c1190f646
Signed-off-by: Marc-Andre Laperle <malaperle@gmail.com>
This commit is contained in:
Marc-Andre Laperle 2018-11-30 22:10:05 -05:00 committed by Marc-André Laperle
parent 8c78a241d5
commit 52b4a02b20
2 changed files with 0 additions and 60 deletions

View file

@ -1,30 +0,0 @@
/*******************************************************************************
* Copyright (c) 2000, 2012 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* QNX Software Systems - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.make.internal.core;
import java.io.OutputStream;
import org.eclipse.core.runtime.IProgressMonitor;
/**
*
* @deprecated as of CDT 8.1. Use org.eclipse.cdt.internal.core.StreamMonitor
*
*/
@Deprecated
public class StreamMonitor extends org.eclipse.cdt.internal.core.StreamProgressMonitor {
public StreamMonitor(IProgressMonitor mon, OutputStream cos, int totalWork) {
super(mon, cos, totalWork);
}
}

View file

@ -1,30 +0,0 @@
/*******************************************************************************
* Copyright (c) 2000, 2012 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* QNX Software Systems - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.newmake.internal.core;
import java.io.OutputStream;
import org.eclipse.core.runtime.IProgressMonitor;
/**
*
* @deprecated as of CDT 8.1. Use org.eclipse.cdt.internal.core.StreamMonitor
*
*/
@Deprecated
public class StreamMonitor extends org.eclipse.cdt.internal.core.StreamProgressMonitor {
public StreamMonitor(IProgressMonitor mon, OutputStream cos, int totalWork) {
super(mon, cos, totalWork);
}
}