Author: vanto
Date: Mon Dec 7 12:41:49 2009
New Revision: 887909
URL: http://svn.apache.org/viewvc?rev=887909&view=rev
Log:
ODE-732: Fixing an ArrayIndexOutOfBoundsException (Thanks to Terry Mueller)
Modified:
ode/branches/APACHE_ODE_1.X/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java
Modified:
ode/branches/APACHE_ODE_1.X/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java
URL:
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java?rev=887909&r1=887908&r2=887909&view=diff
==============================================================================
---
ode/branches/APACHE_ODE_1.X/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java
(original)
+++
ode/branches/APACHE_ODE_1.X/axis2/src/main/java/org/apache/ode/axis2/service/DeploymentBrowser.java
Mon Dec 7 12:41:49 2009
@@ -159,7 +159,7 @@
out.write("<p><a href=\"" +
relativePath + "\">" + relativePath + "</a></p>");
}
} else {
- out.write("<p>Couldn't find bundle " +
segments[2] + "</p>");
+ out.write("<p>Couldn't find bundle " +
segments[1] + "</p>");
}
}
});