8209382: [error-prone] HashtableContains in sun/rmi/server/ActivationGroupImpl.java

Reviewed-by: rriggs
This commit is contained in:
Igor Ignatyev 2018-08-13 17:39:27 -07:00
parent a007690fa0
commit 4bcd4f04a2

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -444,7 +444,7 @@ public class ActivationGroupImpl extends ActivationGroup {
if (groupInactive == true)
throw new ActivationException("group is inactive");
}
if (!active.contains(id)) {
if (!active.containsKey(id)) {
ActiveEntry entry = new ActiveEntry(impl);
active.put(id, entry);
// created new entry, so inform monitor of active object