# HG changeset patch
# User mikejwre
# Date 1275518388 25200
# Node ID ba0f3e4fc5901d2f1dfe2f887ed9baefe41d6d36
# Parent 13f0c0b9b50e83332e734f92500a4b5c9e8724a4# Parent bca3be14c8bd81746d1a0435fea10dc19a6d47c0
Merge
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/make/common/Release.gmk
--- a/jdk/make/common/Release.gmk Thu May 27 10:57:25 2010 -0700
+++ b/jdk/make/common/Release.gmk Wed Jun 02 15:39:48 2010 -0700
@@ -648,7 +648,9 @@
JAR_MANIFEST_FILE=$(ABS_TEMPDIR)/manifest.tmp
$(JAR_MANIFEST_FILE): $(MAINMANIFEST) $(BEANMANIFEST)
$(prep-target)
- $(SED) -e "s/@@RELEASE@@/$(RELEASE)/" $(MAINMANIFEST) >> $@
+ $(SED) -e "s#@@RELEASE@@#$(RELEASE)#" \
+ -e "s#@@COMPANY_NAME@@#$(COMPANY_NAME)#" \
+ $(MAINMANIFEST) >> $@
$(ECHO) >> $@
$(CAT) $(BEANMANIFEST) >> $@
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/make/common/Subdirs.gmk
--- a/jdk/make/common/Subdirs.gmk Thu May 27 10:57:25 2010 -0700
+++ b/jdk/make/common/Subdirs.gmk Wed Jun 02 15:39:48 2010 -0700
@@ -19,7 +19,7 @@
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
-# have any questions
+# questions.
#
#
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/make/common/shared/Defs.gmk
--- a/jdk/make/common/shared/Defs.gmk Thu May 27 10:57:25 2010 -0700
+++ b/jdk/make/common/shared/Defs.gmk Wed Jun 02 15:39:48 2010 -0700
@@ -214,7 +214,7 @@
PRODUCT_NAME = Java(TM)
PRODUCT_SUFFIX = SE Runtime Environment
JDK_RC_PLATFORM_NAME = Platform SE
- COMPANY_NAME = Sun Microsystems, Inc.
+ COMPANY_NAME = Oracle
endif
RUNTIME_NAME = $(PRODUCT_NAME) $(PRODUCT_SUFFIX)
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/make/java/nio/Makefile
--- a/jdk/make/java/nio/Makefile Thu May 27 10:57:25 2010 -0700
+++ b/jdk/make/java/nio/Makefile Wed Jun 02 15:39:48 2010 -0700
@@ -818,7 +818,7 @@
GENSOR_EXE = $(TEMPDIR)/genSocketOptionRegistry$(EXE_SUFFIX)
SOR_COPYRIGHT_YEARS = $(shell $(CAT) $(GENSOR_SRC) | \
- $(NAWK) '/^.*Copyright.*Sun/ { print $$3 }')
+ $(NAWK) '/^.*Copyright.*Oracle/ { printf "%s %s",$$4,$$5 }')
$(TEMPDIR)/$(GENSOR_SRC) : $(GENSOR_SRC)
$(install-non-module-file)
@@ -830,7 +830,7 @@
$(SCH_GEN)/SocketOptionRegistry.java: $(GENSOR_EXE)
$(prep-target)
- NAWK="$(NAWK)" SH="$(SH)" $(SH) -e addNotices.sh $(SOR_COPYRIGHT_YEARS) > $@
+ NAWK="$(NAWK)" SH="$(SH)" $(SH) -e addNotices.sh "$(SOR_COPYRIGHT_YEARS)" > $@
$(GENSOR_EXE) >> $@
#
@@ -852,7 +852,7 @@
GENUC_EXE = $(TEMPDIR)/genUnixConstants
GENUC_COPYRIGHT_YEARS = $(shell $(CAT) $(GENUC_SRC) | \
- $(NAWK) '/^.*Copyright.*Sun/ { print $$3 }')
+ $(NAWK) '/^.*Copyright.*Oracle/ { printf "%s %s",$$4,$$5 }')
$(GENUC_EXE) : $(GENUC_SRC)
$(prep-target)
@@ -860,7 +860,7 @@
$(SFS_GEN)/UnixConstants.java: $(GENUC_EXE)
$(prep-target)
- NAWK="$(NAWK)" SH="$(SH)" $(SH) -e addNotices.sh $(GENUC_COPYRIGHT_YEARS) > $@
+ NAWK="$(NAWK)" SH="$(SH)" $(SH) -e addNotices.sh "$(GENUC_COPYRIGHT_YEARS)" > $@
$(GENUC_EXE) >> $@
GENSC_SRC = $(PLATFORM_SRC)/native/sun/nio/fs/genSolarisConstants.c
@@ -868,7 +868,7 @@
GENSC_EXE = $(TEMPDIR)/genSolarisConstants
GENSC_COPYRIGHT_YEARS = $(shell $(CAT) $(GENSC_SRC) | \
- $(NAWK) '/^.*Copyright.*Sun/ { print $$3 }')
+ $(NAWK) '/^.*Copyright.*Oracle/ { printf "%s %s",$$4,$$5 }')
$(GENSC_EXE) : $(GENSC_SRC)
$(prep-target)
@@ -876,7 +876,7 @@
$(SFS_GEN)/SolarisConstants.java: $(GENSC_EXE)
$(prep-target)
- NAWK="$(NAWK)" SH="$(SH)" $(SH) -e addNotices.sh $(GENSC_COPYRIGHT_YEARS) > $@
+ NAWK="$(NAWK)" SH="$(SH)" $(SH) -e addNotices.sh "$(GENSC_COPYRIGHT_YEARS)" > $@
$(GENSC_EXE) >> $@
.PHONY: sources
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/make/java/nio/addNotices.sh
--- a/jdk/make/java/nio/addNotices.sh Thu May 27 10:57:25 2010 -0700
+++ b/jdk/make/java/nio/addNotices.sh Wed Jun 02 15:39:48 2010 -0700
@@ -28,7 +28,7 @@
# a java comment block. If this script is invoked with a copyright
# year/year range, the java comment block will contain a Sun copyright.
-COPYRIGHT_YEARS=$1
+COPYRIGHT_YEARS="$1"
cat <<__END__
/*
@@ -36,10 +36,10 @@
if [ "x$COPYRIGHT_YEARS" != x ]; then
cat <<__END__
- * Copyright $COPYRIGHT_YEARS Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright (c) $COPYRIGHT_YEARS Oracle and/or its affiliates. All rights reserved.
__END__
fi
-$NAWK ' /^#.*Copyright.*Sun/ { next }
+$NAWK ' /^#.*Copyright.*Oracle/ { next }
/^#([^!]|$)/ { sub(/^#/, " *"); print }
/^$/ { print " */"; exit } ' $0
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/make/java/nio/genCharsetProvider.sh
--- a/jdk/make/java/nio/genCharsetProvider.sh Thu May 27 10:57:25 2010 -0700
+++ b/jdk/make/java/nio/genCharsetProvider.sh Wed Jun 02 15:39:48 2010 -0700
@@ -36,7 +36,7 @@
DST=$1; shift
eval `$NAWK <$SPEC '
- /^[ \t]*copyright / { printf "COPYRIGHT_YEARS=%s\n", $2; }
+ /^[ \t]*copyright / { printf "COPYRIGHT_YEARS=\"%s %s\"\n", $2, $3; }
/^[ \t]*package / { printf "PKG=%s\n", $2; }
/^[ \t]*class / { printf "CLASS=%s\n", $2; }
'`
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/make/tools/manifest.mf
--- a/jdk/make/tools/manifest.mf Thu May 27 10:57:25 2010 -0700
+++ b/jdk/make/tools/manifest.mf Wed Jun 02 15:39:48 2010 -0700
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Specification-Title: Java Platform API Specification
Specification-Version: 1.6
-Specification-Vendor: Sun Microsystems, Inc.
+Specification-Vendor: Oracle
Implementation-Title: Java Runtime Environment
Implementation-Version: @@RELEASE@@
-Implementation-Vendor: Sun Microsystems, Inc.
+Implementation-Vendor: @@COMPANY_NAME@@
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jarsigner/package.html
--- a/jdk/src/share/classes/com/sun/jarsigner/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jarsigner/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -20,9 +20,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
Jarsigner Signing Mechanism Package
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/java/util/jar/pack/package.html
--- a/jdk/src/share/classes/com/sun/java/util/jar/pack/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/java/util/jar/pack/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jdi/connect/package.html
--- a/jdk/src/share/classes/com/sun/jdi/connect/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jdi/connect/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jdi/connect/spi/package.html
--- a/jdk/src/share/classes/com/sun/jdi/connect/spi/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jdi/connect/spi/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jdi/event/package.html
--- a/jdk/src/share/classes/com/sun/jdi/event/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jdi/event/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jdi/package.html
--- a/jdk/src/share/classes/com/sun/jdi/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jdi/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jdi/request/package.html
--- a/jdk/src/share/classes/com/sun/jdi/request/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jdi/request/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/defaults/package.html
--- a/jdk/src/share/classes/com/sun/jmx/defaults/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/defaults/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/interceptor/package.html
--- a/jdk/src/share/classes/com/sun/jmx/interceptor/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/interceptor/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/mbeanserver/package.html
--- a/jdk/src/share/classes/com/sun/jmx/mbeanserver/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/mbeanserver/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/remote/internal/package.html
--- a/jdk/src/share/classes/com/sun/jmx/remote/internal/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/remote/internal/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/package.html
--- a/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/snmp/agent/package.html
--- a/jdk/src/share/classes/com/sun/jmx/snmp/agent/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/snmp/agent/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/snmp/daemon/package.html
--- a/jdk/src/share/classes/com/sun/jmx/snmp/daemon/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/snmp/daemon/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/snmp/defaults/package.html
--- a/jdk/src/share/classes/com/sun/jmx/snmp/defaults/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/snmp/defaults/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/snmp/internal/package.html
--- a/jdk/src/share/classes/com/sun/jmx/snmp/internal/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/snmp/internal/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/snmp/mpm/package.html
--- a/jdk/src/share/classes/com/sun/jmx/snmp/mpm/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/snmp/mpm/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/snmp/package.html
--- a/jdk/src/share/classes/com/sun/jmx/snmp/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/snmp/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/jmx/snmp/tasks/package.html
--- a/jdk/src/share/classes/com/sun/jmx/snmp/tasks/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/jmx/snmp/tasks/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/management/mgmt-overview.html
--- a/jdk/src/share/classes/com/sun/management/mgmt-overview.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/management/mgmt-overview.html Wed Jun 02 15:39:48 2010 -0700
@@ -24,9 +24,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/management/package.html
--- a/jdk/src/share/classes/com/sun/management/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/management/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -22,9 +22,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/net/ssl/package.html
--- a/jdk/src/share/classes/com/sun/net/ssl/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/net/ssl/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -23,9 +23,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/rowset/providers/package.html
--- a/jdk/src/share/classes/com/sun/rowset/providers/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/rowset/providers/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -28,9 +28,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
javax.sql.rowset.providers Package
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/servicetag/package.html
--- a/jdk/src/share/classes/com/sun/servicetag/package.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/servicetag/package.html Wed Jun 02 15:39:48 2010 -0700
@@ -21,9 +21,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->
diff -r 13f0c0b9b50e -r ba0f3e4fc590 jdk/src/share/classes/com/sun/servicetag/resources/register.html
--- a/jdk/src/share/classes/com/sun/servicetag/resources/register.html Thu May 27 10:57:25 2010 -0700
+++ b/jdk/src/share/classes/com/sun/servicetag/resources/register.html Wed Jun 02 15:39:48 2010 -0700
@@ -25,9 +25,9 @@
2 along with this work; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
-CA 95054 USA or visit www.sun.com if you need additional information or
-have any questions.
+Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+or visit www.oracle.com if you need additional information or have any
+questions.
-->