Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/IToolChainFactory.java')
-rw-r--r--core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/IToolChainFactory.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/IToolChainFactory.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/IToolChainFactory.java
deleted file mode 100644
index ff310c718a5..00000000000
--- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/build/IToolChainFactory.java
+++ /dev/null
@@ -1,22 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2015 QNX Software Systems 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
- *******************************************************************************/
-package org.eclipse.cdt.core.build;
-
-import org.osgi.service.prefs.Preferences;
-
-/**
- * @since 5.12
- */
-public interface IToolChainFactory {
-
- CToolChain createToolChain(String id, Preferences settings);
-
- default void discover() {
- }
-
-}

Back to the top