From: markt Date: Thu, 3 Jun 2010 10:02:30 +0000 (+0000) Subject: Re-order so it is easier to check all objects are re-cycled X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e5f7971ce93905be62902e693a6601d363efcbea;p=tomcat7.0 Re-order so it is easier to check all objects are re-cycled git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@950929 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/tomcat/util/http/mapper/MappingData.java b/java/org/apache/tomcat/util/http/mapper/MappingData.java index 2d764857b..b3304340c 100644 --- a/java/org/apache/tomcat/util/http/mapper/MappingData.java +++ b/java/org/apache/tomcat/util/http/mapper/MappingData.java @@ -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; } }