/hg/release/icedtea-web-1.1: Fix PR727: Split conditional to rem...
asu at icedtea.classpath.org
asu at icedtea.classpath.org
Fri May 27 09:33:50 PDT 2011
changeset aea73e8365fe in /hg/release/icedtea-web-1.1
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.1?cmd=changeset;node=aea73e8365fe
author: Andrew Su <asu at redhat.com>
date: Fri May 27 12:32:52 2011 -0400
Fix PR727: Split conditional to removed duplicate entries in cache.
diffstat:
ChangeLog | 6 ++++++
NEWS | 1 +
netx/net/sourceforge/jnlp/cache/CacheUtil.java | 10 ++++++----
3 files changed, 13 insertions(+), 4 deletions(-)
diffs (52 lines):
diff -r d74fed364c47 -r aea73e8365fe ChangeLog
--- a/ChangeLog Wed May 25 15:13:19 2011 -0400
+++ b/ChangeLog Fri May 27 12:32:52 2011 -0400
@@ -1,3 +1,9 @@
+2011-05-26 Andrew Su <asu at redhat.com>
+
+ * NEWS: Update.
+ * netx/net/sourceforge/jnlp/cache/CacheUtil.java:
+ (cleanCache): Split conditional for delete.
+
2011-05-20 Andrew Su <asu at redhat.com>
* NEWS: Update.
diff -r d74fed364c47 -r aea73e8365fe NEWS
--- a/NEWS Wed May 25 15:13:19 2011 -0400
+++ b/NEWS Fri May 27 12:32:52 2011 -0400
@@ -27,6 +27,7 @@
- RH669942: javaws fails to download version/packed files (missing support for jnlp.packEnabled and jnlp.versionEnabled)
- PR658: now jnlp.packEnabled works with applets.
- PR726: closing javaws -about no longer throws exceptions.
+ - PR727: cache now properly removes files.
* Plugin
- PR475, RH604061: Allow applets from the same page to use the same classloader
- PR612: NetDania application ends on java.security.AccessControlException: access denied (java.util.PropertyPermission browser read)
diff -r d74fed364c47 -r aea73e8365fe netx/net/sourceforge/jnlp/cache/CacheUtil.java
--- a/netx/net/sourceforge/jnlp/cache/CacheUtil.java Wed May 25 15:13:19 2011 -0400
+++ b/netx/net/sourceforge/jnlp/cache/CacheUtil.java Fri May 27 12:32:52 2011 -0400
@@ -567,6 +567,11 @@
rStr = cacheDir + rStr.substring(0, rStr.indexOf(File.separatorChar, 1));
long len = file.length();
+ if (keep.contains(file.getPath().substring(rStr.length()))) {
+ lruHandler.removeEntry(key);
+ continue;
+ }
+
/*
* we remove entries from our lru if any of the following condition is met.
* Conditions:
@@ -574,11 +579,8 @@
* - !file.isFile(): if someone tampered with the directory, file doesn't exist.
* - maxSize >= 0 && curSize + len > maxSize: If a limit was set and the new size
* on disk would exceed the maximum size.
- * - keep.contains(...): We had already decided to keep an entry with the same
- * url path.
*/
- if (delete || !file.isFile() || (maxSize >= 0 && curSize + len > maxSize) ||
- keep.contains(file.getPath().substring(rStr.length()))) {
+ if (delete || !file.isFile() || (maxSize >= 0 && curSize + len > maxSize)) {
lruHandler.removeEntry(key);
remove.add(rStr);
} else {
More information about the distro-pkg-dev
mailing list