From 39287875330d64df4598a499096484bb5f65fdc3 Mon Sep 17 00:00:00 2001 From: Ola Bini Date: Fri, 1 Dec 2006 06:39:26 +0000 Subject: [PATCH] Fix typo in last commit. git-svn-id: http://svn.codehaus.org/jruby/trunk/jruby@2524 961051c9-f516-0410-bf72-c9f7e237a7b7 --- src/org/jruby/runtime/ObjectSpace.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/jruby/runtime/ObjectSpace.java b/src/org/jruby/runtime/ObjectSpace.java index 07c2e57991a..79030fc43fa 100644 --- a/src/org/jruby/runtime/ObjectSpace.java +++ b/src/org/jruby/runtime/ObjectSpace.java @@ -92,7 +92,7 @@ public IRubyObject id2ref(long id) { private void cleanIdentities() { IdReference ref; while ((ref = (IdReference) deadIdentityReferences.poll()) != null) - identities.remove(long Long(ref.id())); + identities.remove(new Long(ref.id())); } public synchronized void add(IRubyObject object) {