changeset in /hg/icedtea6: 2008-06-27 Joshua Sumali <jsumali at r...
Joshua Sumali
jsumali at redhat.com
Fri Jun 27 09:31:04 PDT 2008
changeset d331a425f6cd in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=d331a425f6cd
description:
2008-06-27 Joshua Sumali <jsumali at redhat.com>
* rt/net/sourceforge/jnlp/services/XPersistenceService.java: Throw a
FileNotFoundException if the persistence store does not exist.
diffstat:
2 files changed, 8 insertions(+)
ChangeLog | 5 +++++
rt/net/sourceforge/jnlp/services/XPersistenceService.java | 3 +++
diffs (25 lines):
diff -r ade100ee196f -r d331a425f6cd ChangeLog
--- a/ChangeLog Fri Jun 27 11:20:02 2008 -0400
+++ b/ChangeLog Fri Jun 27 12:29:58 2008 -0400
@@ -1,3 +1,8 @@ 2008-06-27 Joshua Sumali <jsumali at redh
+2008-06-27 Joshua Sumali <jsumali at redhat.com>
+
+ * rt/net/sourceforge/jnlp/services/XPersistenceService.java: Throw a
+ FileNotFoundException if the persistence store does not exist.
+
2008-06-27 Joshua Sumali <jsumali at redhat.com>
* rt/net/sourceforge/jnlp/Launcher.java: Exit the application if there was
diff -r ade100ee196f -r d331a425f6cd rt/net/sourceforge/jnlp/services/XPersistenceService.java
--- a/rt/net/sourceforge/jnlp/services/XPersistenceService.java Fri Jun 27 11:20:02 2008 -0400
+++ b/rt/net/sourceforge/jnlp/services/XPersistenceService.java Fri Jun 27 12:29:58 2008 -0400
@@ -118,6 +118,9 @@ class XPersistenceService implements Per
checkLocation(location);
File file = toCacheFile(location);
+ if (!file.exists())
+ throw new FileNotFoundException("Persistence store for "
+ + location.toString() + " is not found.");
file.getParentFile().mkdirs();
return (FileContents) ServiceUtil.createPrivilegedProxy(FileContents.class, new XFileContents(file));
More information about the distro-pkg-dev
mailing list