From 86e880c7136afd9fa79f827465ac8d54254cb813 Mon Sep 17 00:00:00 2001 From: hns Date: Fri, 25 Nov 2005 13:37:07 +0000 Subject: [PATCH] * Make getResources() public. --- src/helma/framework/core/Prototype.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helma/framework/core/Prototype.java b/src/helma/framework/core/Prototype.java index aeb7a7ba..a509da12 100644 --- a/src/helma/framework/core/Prototype.java +++ b/src/helma/framework/core/Prototype.java @@ -186,7 +186,7 @@ public final class Prototype { * Returns the list of resources in this prototype's repositories. Used * by checkForUpdates() to see whether there is anything new. */ - Resource[] getResources() { + public Resource[] getResources() { long checksum = getRepositoryChecksum(); // reload resources if the repositories checksum has changed if (checksum != lastChecksum) { @@ -571,4 +571,4 @@ public final class Prototype { return "[SkinMap " + name + "]"; } } -} +} \ No newline at end of file