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:
parent
3c21f1a7d2
commit
b46c2f1f4f
1 changed files with 1 additions and 1 deletions
|
@ -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") );
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue