Author: taylor
Date: Thu Sep 22 16:44:00 2005
New Revision: 291040
URL: http://svn.apache.org/viewcvs?rev=291040&view=rev
Log:
npe fix from the death bed
Modified:
portals/jetspeed-2/trunk/components/profiler/src/java/org/apache/jetspeed/profiler/rules/impl/PathSessionResolver.java
Modified:
portals/jetspeed-2/trunk/components/profiler/src/java/org/apache/jetspeed/profiler/rules/impl/PathSessionResolver.java
URL:
http://svn.apache.org/viewcvs/portals/jetspeed-2/trunk/components/profiler/src/java/org/apache/jetspeed/profiler/rules/impl/PathSessionResolver.java?rev=291040&r1=291039&r2=291040&view=diff
==============================================================================
---
portals/jetspeed-2/trunk/components/profiler/src/java/org/apache/jetspeed/profiler/rules/impl/PathSessionResolver.java
(original)
+++
portals/jetspeed-2/trunk/components/profiler/src/java/org/apache/jetspeed/profiler/rules/impl/PathSessionResolver.java
Thu Sep 22 16:44:00 2005
@@ -44,7 +44,8 @@
else
{
path = context.getPath();
- path = mapPath(context, path);
+ if (path != null)
+ path = mapPath(context, path);
}
if ((path == null) || path.equals("/"))
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]