# HG changeset patch # User darcy # Date 1570670600 25200 # Node ID 9b40d05c9f66450f71ade56b44913c4bdbe8e164 # Parent 865c889ce351e1ece20daba64001f6238022cc08 8232076: Suppress warnings on non-serializable non-transient instance fields java.naming Reviewed-by: lancea diff -r 865c889ce351 -r 9b40d05c9f66 src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java --- a/src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java Thu Oct 10 01:10:26 2019 +0000 +++ b/src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java Wed Oct 09 18:23:20 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -51,6 +51,7 @@ /** * Whether links were encountered. */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected Object followingLink = null; /** @@ -71,6 +72,7 @@ * The last resolved context. Used to set the "AltNameCtx" in a * CannotProceedException. */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected Context resolvedContext = null; /** diff -r 865c889ce351 -r 9b40d05c9f66 src/java.naming/share/classes/javax/naming/Binding.java --- a/src/java.naming/share/classes/javax/naming/Binding.java Thu Oct 10 01:10:26 2019 +0000 +++ b/src/java.naming/share/classes/javax/naming/Binding.java Wed Oct 09 18:23:20 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -54,6 +54,7 @@ * @see #getObject * @see #setObject */ + @SuppressWarnings("serial") // Not statically typed as Serializable private Object boundObj; /** diff -r 865c889ce351 -r 9b40d05c9f66 src/java.naming/share/classes/javax/naming/CannotProceedException.java --- a/src/java.naming/share/classes/javax/naming/CannotProceedException.java Thu Oct 10 01:10:26 2019 +0000 +++ b/src/java.naming/share/classes/javax/naming/CannotProceedException.java Wed Oct 09 18:23:20 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -127,6 +127,7 @@ * @see #altName * @see javax.naming.spi.ObjectFactory#getObjectInstance */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected Context altNameCtx = null; /** diff -r 865c889ce351 -r 9b40d05c9f66 src/java.naming/share/classes/javax/naming/LinkException.java --- a/src/java.naming/share/classes/javax/naming/LinkException.java Thu Oct 10 01:10:26 2019 +0000 +++ b/src/java.naming/share/classes/javax/naming/LinkException.java Wed Oct 09 18:23:20 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -85,6 +85,7 @@ * @see #getLinkResolvedObj * @see #setLinkResolvedObj */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected Object linkResolvedObj; /** diff -r 865c889ce351 -r 9b40d05c9f66 src/java.naming/share/classes/javax/naming/NamingException.java --- a/src/java.naming/share/classes/javax/naming/NamingException.java Thu Oct 10 01:10:26 2019 +0000 +++ b/src/java.naming/share/classes/javax/naming/NamingException.java Wed Oct 09 18:23:20 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -79,6 +79,7 @@ * @see #getResolvedObj * @see #setResolvedObj */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected Object resolvedObj; /** * Contains the remaining name that has not been resolved yet. diff -r 865c889ce351 -r 9b40d05c9f66 src/java.naming/share/classes/javax/naming/event/NamingEvent.java --- a/src/java.naming/share/classes/javax/naming/event/NamingEvent.java Thu Oct 10 01:10:26 2019 +0000 +++ b/src/java.naming/share/classes/javax/naming/event/NamingEvent.java Wed Oct 09 18:23:20 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2000, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -122,6 +122,7 @@ * Contains information about the change that generated this event. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected Object changeInfo; /** diff -r 865c889ce351 -r 9b40d05c9f66 src/java.naming/share/classes/javax/naming/spi/ResolveResult.java --- a/src/java.naming/share/classes/javax/naming/spi/ResolveResult.java Thu Oct 10 01:10:26 2019 +0000 +++ b/src/java.naming/share/classes/javax/naming/spi/ResolveResult.java Wed Oct 09 18:23:20 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -50,6 +50,7 @@ * Constructors should always initialize this. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected Object resolvedObj; /** * Field containing the remaining name yet to be resolved.