From c02d62e6a63d514abd1c996eace9e6876c549ced Mon Sep 17 00:00:00 2001 From: xuelei Date: Tue, 10 Sep 2013 21:31:28 -0700 Subject: [PATCH] 8024501: sun.security.mscapi.Key has no definition of serialVersionUID Reviewed-by: weijun --- src/windows/classes/sun/security/mscapi/Key.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/windows/classes/sun/security/mscapi/Key.java b/src/windows/classes/sun/security/mscapi/Key.java index 6fa195acf..0124ffb3a 100644 --- a/src/windows/classes/sun/security/mscapi/Key.java +++ b/src/windows/classes/sun/security/mscapi/Key.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2013, 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 @@ -39,6 +39,7 @@ import sun.security.util.Length; */ abstract class Key implements java.security.Key, Length { + private static final long serialVersionUID = -1088859394025049194L; // Native handle protected long hCryptProv = 0; -- GitLab