7201066: Change modifiers on unused fields

Tue, 06 Nov 2012 15:50:14 +0000

author
coffeys
date
Tue, 06 Nov 2012 15:50:14 +0000
changeset 446
f4f39d873b9a
parent 445
0ca1fc7c5f44
child 447
59bff16bc0bf

7201066: Change modifiers on unused fields
Reviewed-by: alanb, skoivu

src/share/classes/com/sun/corba/se/impl/activation/ServerMain.java file | annotate | diff | comparison | revisions
src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java file | annotate | diff | comparison | revisions
src/share/classes/com/sun/corba/se/impl/orbutil/ObjectStreamClass_1_3_1.java file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/classes/com/sun/corba/se/impl/activation/ServerMain.java	Mon Dec 17 07:43:20 2012 -0800
     1.2 +++ b/src/share/classes/com/sun/corba/se/impl/activation/ServerMain.java	Tue Nov 06 15:50:14 2012 +0000
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2002, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -322,9 +322,9 @@
    1.11      com.sun.corba.se.spi.activation._ServerImplBase
    1.12  {
    1.13      private ORB orb;
    1.14 -    private Method installMethod ;
    1.15 -    private Method uninstallMethod ;
    1.16 -    private Method shutdownMethod ;
    1.17 +    private transient Method installMethod ;
    1.18 +    private transient Method uninstallMethod ;
    1.19 +    private transient Method shutdownMethod ;
    1.20      private Object methodArgs[] ;
    1.21  
    1.22      ServerCallback(ORB orb, Method installMethod, Method uninstallMethod,
     2.1 --- a/src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java	Mon Dec 17 07:43:20 2012 -0800
     2.2 +++ b/src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java	Tue Nov 06 15:50:14 2012 +0000
     2.3 @@ -1523,8 +1523,8 @@
     2.4      private boolean hasExternalizableBlockData;
     2.5      Method writeObjectMethod;
     2.6      Method readObjectMethod;
     2.7 -    private Method writeReplaceObjectMethod;
     2.8 -    private Method readResolveObjectMethod;
     2.9 +    private transient Method writeReplaceObjectMethod;
    2.10 +    private transient Method readResolveObjectMethod;
    2.11      private Constructor cons ;
    2.12  
    2.13      /**
     3.1 --- a/src/share/classes/com/sun/corba/se/impl/orbutil/ObjectStreamClass_1_3_1.java	Mon Dec 17 07:43:20 2012 -0800
     3.2 +++ b/src/share/classes/com/sun/corba/se/impl/orbutil/ObjectStreamClass_1_3_1.java	Tue Nov 06 15:50:14 2012 +0000
     3.3 @@ -1,5 +1,5 @@
     3.4  /*
     3.5 - * Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved.
     3.6 + * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
     3.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3.8   *
     3.9   * This code is free software; you can redistribute it and/or modify it
    3.10 @@ -1119,8 +1119,8 @@
    3.11      private boolean hasExternalizableBlockData;
    3.12      Method writeObjectMethod;
    3.13      Method readObjectMethod;
    3.14 -    private Method writeReplaceObjectMethod;
    3.15 -    private Method readResolveObjectMethod;
    3.16 +    private transient Method writeReplaceObjectMethod;
    3.17 +    private transient Method readResolveObjectMethod;
    3.18  
    3.19      /*
    3.20       * ObjectStreamClass_1_3_1 that this one was built from.

mercurial