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.
This commit is contained in:
hns 2002-03-19 19:32:41 +00:00
parent 3c21f1a7d2
commit b46c2f1f4f

View file

@ -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") );
}