* Make getResources() public.

This commit is contained in:
hns 2005-11-25 13:37:07 +00:00
parent 3e98b1f4bf
commit 86e880c713

View file

@ -186,7 +186,7 @@ public final class Prototype {
* Returns the list of resources in this prototype's repositories. Used * Returns the list of resources in this prototype's repositories. Used
* by checkForUpdates() to see whether there is anything new. * by checkForUpdates() to see whether there is anything new.
*/ */
Resource[] getResources() { public Resource[] getResources() {
long checksum = getRepositoryChecksum(); long checksum = getRepositoryChecksum();
// reload resources if the repositories checksum has changed // reload resources if the repositories checksum has changed
if (checksum != lastChecksum) { if (checksum != lastChecksum) {
@ -571,4 +571,4 @@ public final class Prototype {
return "[SkinMap " + name + "]"; return "[SkinMap " + name + "]";
} }
} }
} }