summaryrefslogtreecommitdiff
path: root/gnu/classpath/jdwp
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2005-07-02 20:32:07 +0000
committerMark Wielaard <mark@klomp.org>2005-07-02 20:32:07 +0000
commitd300c5f7e90eeb0ffc7f7bc4299d461b38383d93 (patch)
tree8ad049549d437b770077671c0a73bcec5313bd17 /gnu/classpath/jdwp
parent5e09e4750778d7e99616395c1bc1a99596d5293e (diff)
downloadclasspath-d300c5f7e90eeb0ffc7f7bc4299d461b38383d93.tar.gz
* all files: Update for new FSF address.
Diffstat (limited to 'gnu/classpath/jdwp')
-rw-r--r--gnu/classpath/jdwp/exception/InvalidClassException.java4
-rw-r--r--gnu/classpath/jdwp/exception/InvalidCountException.java4
-rw-r--r--gnu/classpath/jdwp/exception/InvalidEventTypeException.java4
-rw-r--r--gnu/classpath/jdwp/exception/InvalidObjectException.java4
-rw-r--r--gnu/classpath/jdwp/exception/InvalidStringException.java4
-rw-r--r--gnu/classpath/jdwp/exception/InvalidThreadException.java4
-rw-r--r--gnu/classpath/jdwp/exception/InvalidThreadGroupException.java4
-rw-r--r--gnu/classpath/jdwp/exception/JdwpException.java4
-rw-r--r--gnu/classpath/jdwp/exception/JdwpInternalErrorException.java4
-rw-r--r--gnu/classpath/jdwp/exception/NotImplementedException.java4
-rw-r--r--gnu/classpath/jdwp/exception/VmDeadException.java4
-rw-r--r--gnu/classpath/jdwp/id/ArrayId.java4
-rw-r--r--gnu/classpath/jdwp/id/ArrayReferenceTypeId.java4
-rw-r--r--gnu/classpath/jdwp/id/ClassLoaderId.java4
-rw-r--r--gnu/classpath/jdwp/id/ClassObjectId.java4
-rw-r--r--gnu/classpath/jdwp/id/ClassReferenceTypeId.java4
-rw-r--r--gnu/classpath/jdwp/id/InterfaceReferenceTypeId.java4
-rw-r--r--gnu/classpath/jdwp/id/JdwpId.java4
-rw-r--r--gnu/classpath/jdwp/id/JdwpIdFactory.java4
-rw-r--r--gnu/classpath/jdwp/id/ObjectId.java4
-rw-r--r--gnu/classpath/jdwp/id/ReferenceTypeId.java4
-rw-r--r--gnu/classpath/jdwp/id/StringId.java4
-rw-r--r--gnu/classpath/jdwp/id/ThreadGroupId.java4
-rw-r--r--gnu/classpath/jdwp/id/ThreadId.java4
-rw-r--r--gnu/classpath/jdwp/processor/PacketProcessor.java4
-rw-r--r--gnu/classpath/jdwp/transport/ITransport.java4
-rw-r--r--gnu/classpath/jdwp/transport/JdwpCommandPacket.java4
-rw-r--r--gnu/classpath/jdwp/transport/JdwpConnection.java4
-rw-r--r--gnu/classpath/jdwp/transport/JdwpPacket.java4
-rw-r--r--gnu/classpath/jdwp/transport/JdwpReplyPacket.java4
-rw-r--r--gnu/classpath/jdwp/transport/SocketTransport.java4
-rw-r--r--gnu/classpath/jdwp/transport/TransportException.java4
-rw-r--r--gnu/classpath/jdwp/transport/TransportFactory.java4
-rw-r--r--gnu/classpath/jdwp/util/JdwpString.java4
-rw-r--r--gnu/classpath/jdwp/util/Signature.java4
35 files changed, 70 insertions, 70 deletions
diff --git a/gnu/classpath/jdwp/exception/InvalidClassException.java b/gnu/classpath/jdwp/exception/InvalidClassException.java
index cf55bff6b..cd276be8c 100644
--- a/gnu/classpath/jdwp/exception/InvalidClassException.java
+++ b/gnu/classpath/jdwp/exception/InvalidClassException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/InvalidCountException.java b/gnu/classpath/jdwp/exception/InvalidCountException.java
index e3ec3f6d7..d5f40c96b 100644
--- a/gnu/classpath/jdwp/exception/InvalidCountException.java
+++ b/gnu/classpath/jdwp/exception/InvalidCountException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/InvalidEventTypeException.java b/gnu/classpath/jdwp/exception/InvalidEventTypeException.java
index 48e75abc2..e0402283f 100644
--- a/gnu/classpath/jdwp/exception/InvalidEventTypeException.java
+++ b/gnu/classpath/jdwp/exception/InvalidEventTypeException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/InvalidObjectException.java b/gnu/classpath/jdwp/exception/InvalidObjectException.java
index ada83459d..49e8ac1e5 100644
--- a/gnu/classpath/jdwp/exception/InvalidObjectException.java
+++ b/gnu/classpath/jdwp/exception/InvalidObjectException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/InvalidStringException.java b/gnu/classpath/jdwp/exception/InvalidStringException.java
index 842bde294..c84a960f1 100644
--- a/gnu/classpath/jdwp/exception/InvalidStringException.java
+++ b/gnu/classpath/jdwp/exception/InvalidStringException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/InvalidThreadException.java b/gnu/classpath/jdwp/exception/InvalidThreadException.java
index 2a0394848..985b1a791 100644
--- a/gnu/classpath/jdwp/exception/InvalidThreadException.java
+++ b/gnu/classpath/jdwp/exception/InvalidThreadException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/InvalidThreadGroupException.java b/gnu/classpath/jdwp/exception/InvalidThreadGroupException.java
index 6e7270e22..047621892 100644
--- a/gnu/classpath/jdwp/exception/InvalidThreadGroupException.java
+++ b/gnu/classpath/jdwp/exception/InvalidThreadGroupException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/JdwpException.java b/gnu/classpath/jdwp/exception/JdwpException.java
index 4f4d7c639..5c96cc56b 100644
--- a/gnu/classpath/jdwp/exception/JdwpException.java
+++ b/gnu/classpath/jdwp/exception/JdwpException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/JdwpInternalErrorException.java b/gnu/classpath/jdwp/exception/JdwpInternalErrorException.java
index ad295a592..c022dc537 100644
--- a/gnu/classpath/jdwp/exception/JdwpInternalErrorException.java
+++ b/gnu/classpath/jdwp/exception/JdwpInternalErrorException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/NotImplementedException.java b/gnu/classpath/jdwp/exception/NotImplementedException.java
index c6a321ecd..fba627ea2 100644
--- a/gnu/classpath/jdwp/exception/NotImplementedException.java
+++ b/gnu/classpath/jdwp/exception/NotImplementedException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/exception/VmDeadException.java b/gnu/classpath/jdwp/exception/VmDeadException.java
index 90ac8161c..f3c4a152b 100644
--- a/gnu/classpath/jdwp/exception/VmDeadException.java
+++ b/gnu/classpath/jdwp/exception/VmDeadException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ArrayId.java b/gnu/classpath/jdwp/id/ArrayId.java
index bd95b84e5..cd428a172 100644
--- a/gnu/classpath/jdwp/id/ArrayId.java
+++ b/gnu/classpath/jdwp/id/ArrayId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ArrayReferenceTypeId.java b/gnu/classpath/jdwp/id/ArrayReferenceTypeId.java
index 23cf4e80f..14a73dc5b 100644
--- a/gnu/classpath/jdwp/id/ArrayReferenceTypeId.java
+++ b/gnu/classpath/jdwp/id/ArrayReferenceTypeId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ClassLoaderId.java b/gnu/classpath/jdwp/id/ClassLoaderId.java
index 1f2b1e468..133872566 100644
--- a/gnu/classpath/jdwp/id/ClassLoaderId.java
+++ b/gnu/classpath/jdwp/id/ClassLoaderId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ClassObjectId.java b/gnu/classpath/jdwp/id/ClassObjectId.java
index cb756fdf1..e5559ce10 100644
--- a/gnu/classpath/jdwp/id/ClassObjectId.java
+++ b/gnu/classpath/jdwp/id/ClassObjectId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ClassReferenceTypeId.java b/gnu/classpath/jdwp/id/ClassReferenceTypeId.java
index 4f96802a4..6b57673f8 100644
--- a/gnu/classpath/jdwp/id/ClassReferenceTypeId.java
+++ b/gnu/classpath/jdwp/id/ClassReferenceTypeId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/InterfaceReferenceTypeId.java b/gnu/classpath/jdwp/id/InterfaceReferenceTypeId.java
index 95d5a4896..bdbd6b6eb 100644
--- a/gnu/classpath/jdwp/id/InterfaceReferenceTypeId.java
+++ b/gnu/classpath/jdwp/id/InterfaceReferenceTypeId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/JdwpId.java b/gnu/classpath/jdwp/id/JdwpId.java
index 81b6d2659..37f82e208 100644
--- a/gnu/classpath/jdwp/id/JdwpId.java
+++ b/gnu/classpath/jdwp/id/JdwpId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/JdwpIdFactory.java b/gnu/classpath/jdwp/id/JdwpIdFactory.java
index 5a26cf888..06ec3c768 100644
--- a/gnu/classpath/jdwp/id/JdwpIdFactory.java
+++ b/gnu/classpath/jdwp/id/JdwpIdFactory.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ObjectId.java b/gnu/classpath/jdwp/id/ObjectId.java
index 6bd399fe2..e34a3b59e 100644
--- a/gnu/classpath/jdwp/id/ObjectId.java
+++ b/gnu/classpath/jdwp/id/ObjectId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ReferenceTypeId.java b/gnu/classpath/jdwp/id/ReferenceTypeId.java
index 63f38af04..cdb78040a 100644
--- a/gnu/classpath/jdwp/id/ReferenceTypeId.java
+++ b/gnu/classpath/jdwp/id/ReferenceTypeId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/StringId.java b/gnu/classpath/jdwp/id/StringId.java
index 9e5b7ce8b..ea1a83a56 100644
--- a/gnu/classpath/jdwp/id/StringId.java
+++ b/gnu/classpath/jdwp/id/StringId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ThreadGroupId.java b/gnu/classpath/jdwp/id/ThreadGroupId.java
index 80e8ac500..aef7d5b54 100644
--- a/gnu/classpath/jdwp/id/ThreadGroupId.java
+++ b/gnu/classpath/jdwp/id/ThreadGroupId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/id/ThreadId.java b/gnu/classpath/jdwp/id/ThreadId.java
index 9a719bec9..733bf5510 100644
--- a/gnu/classpath/jdwp/id/ThreadId.java
+++ b/gnu/classpath/jdwp/id/ThreadId.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/processor/PacketProcessor.java b/gnu/classpath/jdwp/processor/PacketProcessor.java
index 8195cbbde..5cf335d01 100644
--- a/gnu/classpath/jdwp/processor/PacketProcessor.java
+++ b/gnu/classpath/jdwp/processor/PacketProcessor.java
@@ -16,8 +16,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/transport/ITransport.java b/gnu/classpath/jdwp/transport/ITransport.java
index 16706076f..371cf8f06 100644
--- a/gnu/classpath/jdwp/transport/ITransport.java
+++ b/gnu/classpath/jdwp/transport/ITransport.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/transport/JdwpCommandPacket.java b/gnu/classpath/jdwp/transport/JdwpCommandPacket.java
index eb86ce871..e99159aad 100644
--- a/gnu/classpath/jdwp/transport/JdwpCommandPacket.java
+++ b/gnu/classpath/jdwp/transport/JdwpCommandPacket.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/transport/JdwpConnection.java b/gnu/classpath/jdwp/transport/JdwpConnection.java
index d00c56452..18250d320 100644
--- a/gnu/classpath/jdwp/transport/JdwpConnection.java
+++ b/gnu/classpath/jdwp/transport/JdwpConnection.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/transport/JdwpPacket.java b/gnu/classpath/jdwp/transport/JdwpPacket.java
index 29aed0178..7fa93e2de 100644
--- a/gnu/classpath/jdwp/transport/JdwpPacket.java
+++ b/gnu/classpath/jdwp/transport/JdwpPacket.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/transport/JdwpReplyPacket.java b/gnu/classpath/jdwp/transport/JdwpReplyPacket.java
index b23b0fda3..06d1aff7a 100644
--- a/gnu/classpath/jdwp/transport/JdwpReplyPacket.java
+++ b/gnu/classpath/jdwp/transport/JdwpReplyPacket.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/transport/SocketTransport.java b/gnu/classpath/jdwp/transport/SocketTransport.java
index 3be193a05..0ad7357e1 100644
--- a/gnu/classpath/jdwp/transport/SocketTransport.java
+++ b/gnu/classpath/jdwp/transport/SocketTransport.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/transport/TransportException.java b/gnu/classpath/jdwp/transport/TransportException.java
index 7a7afe35a..057422a87 100644
--- a/gnu/classpath/jdwp/transport/TransportException.java
+++ b/gnu/classpath/jdwp/transport/TransportException.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/transport/TransportFactory.java b/gnu/classpath/jdwp/transport/TransportFactory.java
index 7f617863e..480fb3629 100644
--- a/gnu/classpath/jdwp/transport/TransportFactory.java
+++ b/gnu/classpath/jdwp/transport/TransportFactory.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/util/JdwpString.java b/gnu/classpath/jdwp/util/JdwpString.java
index 592249fcc..e94700fe1 100644
--- a/gnu/classpath/jdwp/util/JdwpString.java
+++ b/gnu/classpath/jdwp/util/JdwpString.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
diff --git a/gnu/classpath/jdwp/util/Signature.java b/gnu/classpath/jdwp/util/Signature.java
index 648a8404d..e65095b85 100644
--- a/gnu/classpath/jdwp/util/Signature.java
+++ b/gnu/classpath/jdwp/util/Signature.java
@@ -15,8 +15,8 @@ General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
-Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-02111-1307 USA.
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and