summaryrefslogtreecommitdiff
path: root/jurt/com/sun
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-12-10 14:37:57 +0100
committersb <sb@openoffice.org>2010-12-10 14:37:57 +0100
commit686f98d534828e4b8f9decba5f0c73d76d249b31 (patch)
treed26a8b4ca43c9e597f58d7dc47395bb0fde6bbff /jurt/com/sun
parent195075fbf5916d543a95707ea5ae0547a8275ca4 (diff)
sb135: #i116046# fixed jurt.com.sun.star.lib.uno.protocols.urp.Cache typo, adapted corresponding tests plus solenv/inc/javaunittest.mk to JUnit framework
Diffstat (limited to 'jurt/com/sun')
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Cache.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java b/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java
index 437b20062..ad4bdbcc1 100644
--- a/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java
+++ b/jurt/com/sun/star/lib/uno/protocols/urp/Cache.java
@@ -52,7 +52,7 @@ final class Cache {
if (e == null) {
if (map.size() < maxSize) {
// There is still room for a new entry at the front:
- e = new Entry(content, map.size(), last, null);
+ e = new Entry(content, map.size(), null, first);
if (first == null) {
last = e;
} else {