mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8226831: Use Objects.equals() when appropriate
Reviewed-by: rriggs, bpb
This commit is contained in:
parent
99bf89c581
commit
3ed845784d
7 changed files with 26 additions and 31 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1997, 2019, 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
|
||||
|
@ -1100,8 +1100,7 @@ class AttributeEntry implements Map.Entry<Attribute,Object> {
|
|||
return false;
|
||||
}
|
||||
AttributeEntry other = (AttributeEntry) o;
|
||||
return other.key.equals(key) &&
|
||||
(value == null ? other.value == null : other.value.equals(value));
|
||||
return other.key.equals(key) && Objects.equals(other.value, value);
|
||||
}
|
||||
|
||||
public Attribute getKey() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue