From e5f7971ce93905be62902e693a6601d363efcbea Mon Sep 17 00:00:00 2001 From: markt Date: Thu, 3 Jun 2010 10:02:30 +0000 Subject: [PATCH] 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 --- java/org/apache/tomcat/util/http/mapper/MappingData.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } } -- 2.11.0