Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-07-24 10:46:26 +0000
committerSergey Prigogin2015-07-24 23:16:45 +0000
commit27aa30b51d454883dd85d2e8afeba1fc7d89391d (patch)
treebf106b7720161e670b1b0b48b53301dd41c77c74
parent7a42683b84ede77bfdfb7c6028181e1a72faad9e (diff)
downloadeclipse.platform.resources-27aa30b51d454883dd85d2e8afeba1fc7d89391d.tar.gz
eclipse.platform.resources-27aa30b51d454883dd85d2e8afeba1fc7d89391d.tar.xz
eclipse.platform.resources-27aa30b51d454883dd85d2e8afeba1fc7d89391d.zip
Bug 473487 - Run "Fix Copyrights" on org.eclipse.core.resources
Change-Id: Id61469afb308f019f66e1594065c9eb806436d73 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.core.resources/build-user.xml10
-rw-r--r--bundles/org.eclipse.core.resources/plugin.xml11
-rw-r--r--bundles/org.eclipse.core.resources/scripts/buildExtraJAR.xml11
-rw-r--r--bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/resources/ComputeProjectOrder.java1
-rw-r--r--bundles/org.eclipse.core.resources/src/org/eclipse/core/resources/IPathVariableManager.java2
5 files changed, 33 insertions, 2 deletions
diff --git a/bundles/org.eclipse.core.resources/build-user.xml b/bundles/org.eclipse.core.resources/build-user.xml
index 6097713f2..08366d967 100644
--- a/bundles/org.eclipse.core.resources/build-user.xml
+++ b/bundles/org.eclipse.core.resources/build-user.xml
@@ -1,3 +1,13 @@
+<!--
+ Copyright (c) 2015 IBM Corporation 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:
+ IBM Corporation - initial API and implementation
+ -->
<target name="help">
<echo message="Please run: $ ant -v -projecthelp"/>
</target> \ No newline at end of file
diff --git a/bundles/org.eclipse.core.resources/plugin.xml b/bundles/org.eclipse.core.resources/plugin.xml
index 94961ecd6..7f8663ce3 100644
--- a/bundles/org.eclipse.core.resources/plugin.xml
+++ b/bundles/org.eclipse.core.resources/plugin.xml
@@ -1,5 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
+<!--
+ Copyright (c) 2015 IBM Corporation 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:
+ IBM Corporation - initial API and implementation
+ -->
+
<plugin>
<extension-point id="builders" name="%buildersName" schema="schema/builders.exsd"/>
diff --git a/bundles/org.eclipse.core.resources/scripts/buildExtraJAR.xml b/bundles/org.eclipse.core.resources/scripts/buildExtraJAR.xml
index 8eeaaf463..0c4200db4 100644
--- a/bundles/org.eclipse.core.resources/scripts/buildExtraJAR.xml
+++ b/bundles/org.eclipse.core.resources/scripts/buildExtraJAR.xml
@@ -1,4 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2015 IBM Corporation 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:
+ IBM Corporation - initial API and implementation
+ -->
+
<project name="org.eclipse.core.resources" default="main" basedir="..">
<target name="main" depends="clean, ant_tasks/resources-ant.jar">
diff --git a/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/resources/ComputeProjectOrder.java b/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/resources/ComputeProjectOrder.java
index 62cee6b01..9c1cba924 100644
--- a/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/resources/ComputeProjectOrder.java
+++ b/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/resources/ComputeProjectOrder.java
@@ -10,7 +10,6 @@
* Broadcom Corporation - ongoing development
* Lars Vogel <Lars.Vogel@vogella.com> - Bug 473427
*******************************************************************************/
-
package org.eclipse.core.internal.resources;
import java.util.*;
diff --git a/bundles/org.eclipse.core.resources/src/org/eclipse/core/resources/IPathVariableManager.java b/bundles/org.eclipse.core.resources/src/org/eclipse/core/resources/IPathVariableManager.java
index ce9931b19..3ffe506b6 100644
--- a/bundles/org.eclipse.core.resources/src/org/eclipse/core/resources/IPathVariableManager.java
+++ b/bundles/org.eclipse.core.resources/src/org/eclipse/core/resources/IPathVariableManager.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2014 IBM Corporation and others.
+ * Copyright (c) 2000, 2015 IBM Corporation 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

Back to the top