Skip to content

Commit

Permalink
Fix typo in last commit.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.codehaus.org/jruby/trunk/jruby@2524 961051c9-f516-0410-bf72-c9f7e237a7b7
  • Loading branch information
olabini committed Dec 1, 2006
1 parent 97e39e5 commit d910967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jruby/runtime/ObjectSpace.java
Expand Up @@ -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) {
Expand Down

0 comments on commit d910967

Please sign in to comment.