From 5593f57038abf197fb29aecfe42f2cb4d7ea3cb2 Mon Sep 17 00:00:00 2001 From: Casey Marshall Date: Sat, 14 Aug 2004 17:51:40 +0000 Subject: 2004-08-14 Casey Marshall Author e-mail updated for all files. * gnu/java/security/OID.java (equals): test if the aurgment is an instance of OID. (compareTo): use `equals'. * gnu/java/security/der/BitString.java (equals): test if the argument is an instance of BitString. * gnu/java/security/der/DERReader.java: Removed NIO imports. Made class final. Made fields private. (): new constructor. (skip): new method. (makeString): made static; don't use NIO. (fromIso88591, fromUtf16Be, fromUtf8): new methods. * gnu/java/security/der/DERWriter.java: fixed imports. (writeString): don't use NIO. (toIso88591, toUtf16Be, toUtf8): new methods. * gnu/java/security/der/DERValue.java: formatting changes only. * gnu/java/security/der/DER.java: likewise. --- gnu/java/security/der/DEREncodingException.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/java/security/der/DEREncodingException.java') diff --git a/gnu/java/security/der/DEREncodingException.java b/gnu/java/security/der/DEREncodingException.java index 385fbaccc..3162b45d2 100644 --- a/gnu/java/security/der/DEREncodingException.java +++ b/gnu/java/security/der/DEREncodingException.java @@ -7,7 +7,7 @@ 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. - + 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 @@ -46,7 +46,7 @@ public class DEREncodingException extends IOException { super (); } - + public DEREncodingException (String msg) { super (msg); -- cgit v1.2.1