8209024: Use SuppressWarnings on serialVersionUID fields in interfaces

Reviewed-by: bpb, rriggs, mullan
This commit is contained in:
Joe Darcy 2018-08-06 14:29:22 -07:00
parent 080d3bb21a
commit 4bac00436d
20 changed files with 38 additions and 18 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2017, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 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
@ -109,6 +109,7 @@ public interface Key extends java.io.Serializable {
* serialization compatibility with a previous
* version of the class.
*/
@SuppressWarnings("serial") // serialVersionUID in an interface is ineffectual
static final long serialVersionUID = 6603384152749567654L;
/**