diff options
author | Andrew Su <[email protected]> | 2011-04-20 09:26:50 -0400 |
---|---|---|
committer | Andrew Su <[email protected]> | 2011-04-20 09:26:50 -0400 |
commit | 19186a9de2f09a3eec61577121071c8395f190e3 (patch) | |
tree | 5fb7b6e4fd2b200d121a4f9789b62606da68af44 /netx | |
parent | d2ab6fbc6ac11d8d4684f2f855a5324548227917 (diff) |
Store lru after modifying the entries
Diffstat (limited to 'netx')
-rw-r--r-- | netx/net/sourceforge/jnlp/cache/CacheUtil.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/netx/net/sourceforge/jnlp/cache/CacheUtil.java b/netx/net/sourceforge/jnlp/cache/CacheUtil.java index 120573f..5d9bf21 100644 --- a/netx/net/sourceforge/jnlp/cache/CacheUtil.java +++ b/netx/net/sourceforge/jnlp/cache/CacheUtil.java @@ -307,6 +307,7 @@ public class CacheUtil { if (cacheFile == null) { // We did not find a copy of it. cacheFile = makeNewCacheFile(source, version); } + lruHandler.store(); lruHandler.unlock(); } return cacheFile; |