[jboss-cvs] jbosside/core/plugins/org.jboss.ide.eclipse.packages.core/src/main/org/jboss/ide/eclipse/packages/core/project/build ...
Marshall Culpepper
mculpepper at jboss.com
Thu Mar 1 11:50:55 EST 2007
User: mculpepper
Date: 07/03/01 11:50:55
Modified: core/plugins/org.jboss.ide.eclipse.packages.core/src/main/org/jboss/ide/eclipse/packages/core/project/build
BuildFileOperations.java
Log:
getSourcePath() wasn't working for sub-dirs under a project, this should now be fixed. [JBIDE-455]
file copy tracing now shows the destination path of each file being copied
Revision Changes Path
1.4 +2 -2 jbosside/core/plugins/org.jboss.ide.eclipse.packages.core/src/main/org/jboss/ide/eclipse/packages/core/project/build/BuildFileOperations.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: BuildFileOperations.java
===================================================================
RCS file: /cvsroot/jboss/jbosside/core/plugins/org.jboss.ide.eclipse.packages.core/src/main/org/jboss/ide/eclipse/packages/core/project/build/BuildFileOperations.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- BuildFileOperations.java 28 Feb 2007 23:22:01 -0000 1.3
+++ BuildFileOperations.java 1 Mar 2007 16:50:55 -0000 1.4
@@ -101,8 +101,6 @@
}
}
- Trace.trace(getClass(), "copying " + path.toString() + " ...");
-
InputStream in = null;
OutputStream[] outStreams = null;
// I'm using the fully qualified package name here to avoid confusion with java.io
@@ -111,6 +109,8 @@
for (int j = 0; j < outStreams.length; j++)
{
+ Trace.trace(getClass(), "copying " + path.toString() + " to " + packageFiles[j].getAbsolutePath() + " ...");
+
try {
in = new FileInputStream(path.toFile());
File.cp(in, outStreams[j]);
More information about the jboss-cvs-commits
mailing list