PolicyFile.java, [...]: Fixed copyright header.
authorMichael Koch <konqueror@gmx.de>
Tue, 22 Feb 2005 17:52:40 +0000 (17:52 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Tue, 22 Feb 2005 17:52:40 +0000 (17:52 +0000)
2005-02-22  Michael Koch  <konqueror@gmx.de>

* gnu/java/security/PolicyFile.java,
gnu/java/security/pkcs/PKCS7SignedData.java,
gnu/java/security/pkcs/SignerInfo.java:
Fixed copyright header.

From-SVN: r95399

libjava/ChangeLog
libjava/gnu/java/security/PolicyFile.java
libjava/gnu/java/security/pkcs/PKCS7SignedData.java
libjava/gnu/java/security/pkcs/SignerInfo.java

index 8eb46e4eb939d55cf599fca66b8deee0afc0f677..b1fbc96ee2479b45ff2a408f7cb232f19fe694e8 100644 (file)
@@ -1,3 +1,10 @@
+2005-02-22  Michael Koch  <konqueror@gmx.de>
+
+       * gnu/java/security/PolicyFile.java,
+       gnu/java/security/pkcs/PKCS7SignedData.java,
+       gnu/java/security/pkcs/SignerInfo.java:
+       Fixed copyright header.
+
 2005-02-22  Jeroen Frijters  <jeroen@frijters.net>
 
        * java/beans/PropertyDescriptor.java
index d5c14dc7a1726a0d9dc3315ea08c21f4de5c2cc1..c939dda47c48850807644d899da36382e27898be 100644 (file)
@@ -1,18 +1,20 @@
-/* PolicyFile.java -- policy file reader.
-   Copyright (C) 2004  Free Software Foundation, Inc.
+/* PolicyFile.java -- policy file reader
+   Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
-This program is free software; you can redistribute it and/or modify
+This file is part of GNU Classpath.
+
+GNU Classpath is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2, or (at your option)
 any later version.
 
-This program is distributed in the hope that it will be useful, but
+GNU Classpath is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with this program; see the file COPYING.  If not, write to the
+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.
 
@@ -33,7 +35,6 @@ this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version. */
 
-
 package gnu.java.security;
 
 import java.io.File;
@@ -143,7 +144,8 @@ public final class PolicyFile extends Policy
   // -------------------------------------------------------------------------
 
   private static final boolean DEBUG = true;
-  private static void debug(String msg)
+  // Package-private to avoid a trampoline.
+  static void debug(String msg)
   {
     System.err.print(">> PolicyFile: ");
     System.err.println(msg);
index 5c2a98a5cac82649cb4737d7214e49b699aeb543..869febebd9c2d565f9f2c8806c920767ede6fde5 100644 (file)
@@ -1,18 +1,20 @@
-/* PKCS7SignedData.java -- reader for PKCS#7 signedData objects.
-   Copyright (C) 2004  Free Software Foundation, Inc.
+/* PKCS7SignedData.java -- reader for PKCS#7 signedData objects
+   Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
-This program is free software; you can redistribute it and/or modify
+This file is part of GNU Classpath.
+
+GNU Classpath is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2, or (at your option)
 any later version.
 
-This program is distributed in the hope that it will be useful, but
+GNU Classpath is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with this program; see the file COPYING.  If not, write to the
+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.
 
@@ -33,7 +35,6 @@ this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version. */
 
-
 package gnu.java.security.pkcs;
 
 import gnu.java.security.OID;
index 15fe9f9f8607b071b2b928b6c28f881fd33ef8d6..d6b747dea6e52d42248829cd4b90e8edb259b6a5 100644 (file)
@@ -1,18 +1,20 @@
-/* SignerInfo.java -- a SignerInfo object, from PKCS #7.
-   Copyright (C) 2004  Free Software Foundation, Inc.
+/* SignerInfo.java -- a SignerInfo object, from PKCS #7
+   Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
-This program is free software; you can redistribute it and/or modify
+This file is part of GNU Classpath.
+
+GNU Classpath is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2, or (at your option)
 any later version.
 
-This program is distributed in the hope that it will be useful, but
+GNU Classpath is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with this program; see the file COPYING.  If not, write to the
+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.
 
@@ -33,7 +35,6 @@ this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version. */
 
-
 package gnu.java.security.pkcs;
 
 import gnu.java.security.OID;