added fixed clear method as public method

pull/1/head
Michael Peter Christen 12 years ago
parent 20fab1feb6
commit 2648b42b27

@ -87,12 +87,12 @@ public class NoticedURL {
this.noloadStack.setMinimumDelta(minimumLocalDelta, minimumGlobalDelta);
}
protected void clear() {
public void clear() {
Log.logInfo("NoticedURL", "CLEARING ALL STACKS");
this.coreStack.clear();
this.limitStack.clear();
this.remoteStack.clear();
this.noloadStack.clear();
if (this.coreStack != null) this.coreStack.clear();
if (this.limitStack != null) this.limitStack.clear();
if (this.remoteStack != null) this.remoteStack.clear();
if (this.noloadStack != null) this.noloadStack.clear();
}
protected void close() {

Loading…
Cancel
Save