Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2004-09-08 18:23:48 +0000
committerAlain Magloire2004-09-08 18:23:48 +0000
commit88738cfecc29b1865fc1f15d5be862a385ee1678 (patch)
treeb1a76b9d8e20cdeeb0a354186afd6bbac0b5142a
parentbe32ca5a0a826bca14e617628cdeb2c77dd2cee3 (diff)
downloadorg.eclipse.cdt-88738cfecc29b1865fc1f15d5be862a385ee1678.tar.gz
org.eclipse.cdt-88738cfecc29b1865fc1f15d5be862a385ee1678.tar.xz
org.eclipse.cdt-88738cfecc29b1865fc1f15d5be862a385ee1678.zip
Copyright fixes
-rw-r--r--core/org.eclipse.cdt.core/plugin.xml2
-rw-r--r--core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ToolFactory.java25
2 files changed, 12 insertions, 15 deletions
diff --git a/core/org.eclipse.cdt.core/plugin.xml b/core/org.eclipse.cdt.core/plugin.xml
index 4066259eed9..0f161893bb5 100644
--- a/core/org.eclipse.cdt.core/plugin.xml
+++ b/core/org.eclipse.cdt.core/plugin.xml
@@ -54,7 +54,7 @@
<extension-point id="CFileType" name="CFileType" schema="schema/CFileType.exsd"/>
<extension-point id="CFileTypeAssociation" name="CFileTypeAssociation" schema="schema/CFileTypeAssociation.exsd"/>
<extension-point id="PathEntryContainerInitializer" name="%PathEntryContainerInitializer" schema="schema/PathEntryContainerInitializer.exsd"/>
- <extension-point id="CodeFormatter" name="CodeFormatter.name" schema="schema/CodeFormatter.exsd"/>
+ <extension-point id="CodeFormatter" name="%CodeFormatter.name" schema="schema/CodeFormatter.exsd"/>
<!-- =================================================================================== -->
<!-- Define the list of the Binary Parser provided by the CDT -->
diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ToolFactory.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ToolFactory.java
index 4725eaff0a4..81a4d98c716 100644
--- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ToolFactory.java
+++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/ToolFactory.java
@@ -1,16 +1,14 @@
-/*
- * Created on Aug 17, 2004
- *
- * Copyright 2004, QNX Software Systems Ltd. All Rights Reserved.
- *
- * This source code may contain confidential information of QNX Software
- * Systems Ltd. (QSSL) and its licensors. Any use, reproduction,
- * modification, disclosure, distribution or transfer of this software,
- * or any software which includes or is based upon any of this code, is
- * prohibited unless expressly authorized by QSSL by written agreement. For
- * more information (including whether this source code file has been
- * published) please email licensing@qnx.com.
- */
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - Initial API and implementation
+ *******************************************************************************/
+
package org.eclipse.cdt.core;
import java.util.Map;
@@ -24,7 +22,6 @@ import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.Platform;
/**
- * @author AChapiro
*/
public class ToolFactory {

Back to the top