Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] .classpath/build.properties cleanup for org.eclipse.cdt.debug.ui.tests

I have committed the following cleanup to remove the ui and model directories from the list of source directories in org.eclipse.cdt.debug.ui.tests, as they did not actually exist.
-Peter
Index: .classpath
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui.tests/.classpath,v
retrieving revision 1.1
diff -u -r1.1 .classpath
--- .classpath    10 Oct 2002 13:06:39 -0000    1.1
+++ .classpath    10 Oct 2002 17:59:39 -0000
@@ -1,9 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="src" path="src/"/>
-    <classpathentry kind="src" path="ui/"/>
    <classpathentry kind="src" path="core/"/>
-    <classpathentry kind="src" path="model/"/>
    <classpathentry kind="src" path="/org.apache.xerces"/>
    <classpathentry kind="src" path="/org.eclipse.core.boot"/>
    <classpathentry kind="src" path="/org.eclipse.core.resources"/>
Index: build.properties
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui.tests/build.properties,v
retrieving revision 1.1
diff -u -r1.1 build.properties
--- build.properties    10 Oct 2002 13:06:39 -0000    1.1
+++ build.properties    10 Oct 2002 17:59:39 -0000
@@ -1 +1,2 @@
-source.cdttests.jar = src/, ui/, core/, model/
+source.cdttests.jar = src/,\
+                      core/




Back to the top