summaryrefslogtreecommitdiff
path: root/jurt/com
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
commit4eb067284ed88651b0a8c89813515f0b88b2bb04 (patch)
tree34a15913b8777630065f34d782b2e1e9c3371ad1 /jurt/com
parent0d2b12deb5d2a78d795ac39b36d51170ef0439de (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')
-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 48268a53a260..d9c57af30cce 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 {