throw new AccessControlException(
"Application preferences directory not specified.");
}
InputStream in = null;
MRUList mru = new MRUList();
try {
File f = new File(a, getApplicationName() + ".mru");
if (f.exists()) {
if (log.isDebugEnabled()) {
log.debug("Loading MRU from " + f.getAbsolutePath());
}
in = new FileInputStream(f);
mru.reload(in);
} else {
if (log.isDebugEnabled()) {
log.debug("MRU file " + f.getAbsolutePath() +
" doesn't exist, creating empty list");
}