From cf7e65c7040ef4f5e893f07cce517fb29ead4c25 Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 28 Oct 2002 16:50:28 +0000 Subject: [PATCH] res.data and req.data do not exist anymore. --- src/helma/framework/core/Application.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index 978dc349..31594495 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -479,9 +479,6 @@ public final class Application implements IPathElement, Runnable { // response needs to be closed/encoded before sending it back try { res.close (charset); - // reset data fields for garbage collection (may hold references to evaluator) - res.data = null; - req.data = null; } catch (UnsupportedEncodingException uee) { logEvent ("Unsupported response encoding: "+uee.getMessage()); }