~ubuntu-branches/ubuntu/natty/icedtea-web/natty-proposed

« back to all changes in this revision

Viewing changes to netx/net/sourceforge/jnlp/cache/CacheEntry.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-11-24 13:23:28 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101124132328-2xb9z39vxga63vr9
Tags: 1.0~20101124-0ubuntu1
* Update to hg 20101124.
* Fix xulrunner dependencies for natty.
* Build-depend on pkg-config and libgtk2.0-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
package net.sourceforge.jnlp.cache;
19
19
 
 
20
import static net.sourceforge.jnlp.runtime.Translator.R;
 
21
 
20
22
import java.io.*;
21
23
import java.net.*;
22
24
import java.util.*;
60
62
        File infoFile = CacheUtil.getCacheFile(location, version);
61
63
        infoFile = new File(infoFile.getPath()+".info"); // replace with something that can't be clobbered
62
64
 
63
 
        properties = new PropertiesFile(infoFile, JNLPRuntime.getMessage("CAutoGen"));
 
65
        properties = new PropertiesFile(infoFile, R("CAutoGen"));
64
66
    }
65
67
 
66
68
    /**