From fb6c213f1ca8d32d010ac036771badc6d56f69c0 Mon Sep 17 00:00:00 2001 From: hns Date: Tue, 24 Jan 2006 12:39:32 +0000 Subject: [PATCH] * Add repositories at the end of the repository list if parent is null or not contained in list. --- src/helma/framework/core/Application.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helma/framework/core/Application.java b/src/helma/framework/core/Application.java index 2040421b..72833213 100644 --- a/src/helma/framework/core/Application.java +++ b/src/helma/framework/core/Application.java @@ -1740,8 +1740,8 @@ public final class Application implements IPathElement, Runnable { return true; } } - // no parent or parent not in app's repositories. - repositories.add(0, rep); + // no parent or parent not in app's repositories, add at end of list. + repositories.add(rep); return true; } return false;