Re-order so it is easier to check all objects are re-cycled
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 3 Jun 2010 10:02:30 +0000 (10:02 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 3 Jun 2010 10:02:30 +0000 (10:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@950929 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/tomcat/util/http/mapper/MappingData.java

index 2d76485..b330434 100644 (file)
@@ -42,12 +42,12 @@ public class MappingData {
         host = null;
         context = null;
         wrapper = null;
-        pathInfo.recycle();
+        jspWildCard = false;
+        contextPath.recycle();
         requestPath.recycle();
         wrapperPath.recycle();
-        contextPath.recycle();
+        pathInfo.recycle();
         redirectPath.recycle();
-        jspWildCard = false;
     }
 
 }