Author: mriou
Date: Wed Jul 9 15:53:05 2008
New Revision: 675376
URL: http://svn.apache.org/viewvc?rev=675376&view=rev
Log:
... and removing the usual System.out.println.
Modified:
ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java
Modified:
ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java?rev=675376&r1=675375&r2=675376&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java
(original)
+++
ode/branches/APACHE_ODE_1.1/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java
Wed Jul 9 15:53:05 2008
@@ -124,8 +124,6 @@
if (processes != null) {
List<File> files =
_store.getProcessConfiguration(processes.get(0)).getFiles();
for (File file : files) {
- System.out.println("1: " +
file.getPath());
- System.out.println("2: " +
_store.getDeployDir().getCanonicalPath());
String relativePath =
file.getPath().substring(_store.getDeployDir().getCanonicalPath().length() + 1);
out.write("<p><a href=\"" +
relativePath + "\">" + relativePath + "</a></p>");
}
@@ -193,7 +191,6 @@
private String bundleUrlFor(String docFile) {
if (docFile.indexOf("processes") >= 0) docFile =
docFile.substring(docFile.indexOf("processes")+10);
- System.out.println("d " + docFile);
List<File> files =
FileUtils.listFilesRecursively(_store.getDeployDir(), null);
for (final File bundleFile : files) {
if (bundleFile.getPath().endsWith(docFile))