From b46c2f1f4f3705f3a7b18e089127ad7226490d94 Mon Sep 17 00:00:00 2001 From: hns Date: Tue, 19 Mar 2002 19:32:41 +0000 Subject: [PATCH] The duplicate clearAppCache() method in Application() isn't necessary anymore because a JavaScript prototype without all the HopObject crap is used for scripting Java objects now. Calling clearCache() will reach through to the Java method. --- Root/main.hac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Root/main.hac b/Root/main.hac index 5cb4d0e3..f2f4bd0c 100644 --- a/Root/main.hac +++ b/Root/main.hac @@ -30,7 +30,7 @@ if ( req.data.app!=null && req.data.app!="" && req.data.action!=null && req.data res.redirect ( appObj.href("main") ); } else if ( req.data.action=="flush" ) { - appObj.clearAppCache(); + appObj.clearCache(); res.redirect ( appObj.href("main") ); }