From 0a88164c497ea6b20df7e6f5f399c1ddcb048f5b Mon Sep 17 00:00:00 2001 From: "Aaron M. Renn" Date: Sun, 2 Aug 1998 02:51:57 +0000 Subject: Minor organizational cleanup --- gnu/java/io/decode/DecoderEightBitLookup.java | 28 +++++++++++-------------- gnu/java/io/encode/ChangeLog | 6 ++++++ gnu/java/io/encode/EncoderEightBitLookup.java | 30 +++++++++++++-------------- 3 files changed, 33 insertions(+), 31 deletions(-) (limited to 'gnu') diff --git a/gnu/java/io/decode/DecoderEightBitLookup.java b/gnu/java/io/decode/DecoderEightBitLookup.java index bd4d83ac5..1bb98738c 100644 --- a/gnu/java/io/decode/DecoderEightBitLookup.java +++ b/gnu/java/io/decode/DecoderEightBitLookup.java @@ -56,7 +56,18 @@ protected static char[] lookup_table; /*************************************************************************/ /* - * Class Methods + * Constructors + */ +public +DecoderEightBitLookup(InputStream in) +{ + super(in); +} + +/*************************************************************************/ + +/* + * Instance Methods */ /** @@ -88,21 +99,6 @@ convertToChars(byte[] buf, int buf_offset, int len, char[] cbuf, /*************************************************************************/ -/* - * Constructors - */ -public -DecoderEightBitLookup(InputStream in) -{ - super(in); -} - -/*************************************************************************/ - -/* - * Instance Methods - */ - /** * Read the requested number of chars from the underlying stream */ diff --git a/gnu/java/io/encode/ChangeLog b/gnu/java/io/encode/ChangeLog index 90f8b2bee..467c317cc 100644 --- a/gnu/java/io/encode/ChangeLog +++ b/gnu/java/io/encode/ChangeLog @@ -1,3 +1,9 @@ +Sat Aug 1 21:54:24 1998 arenn's Development Account + + * EncoderUTF8.java: Wrote this class and got a clean compile. + + * EncoderEightBitLookup.java: Moved methods around for consistency + Sun Jul 26 19:16:46 1998 arenn's Development Account * Encoder8859_1.java: Wrote this class and got a clean compile. diff --git a/gnu/java/io/encode/EncoderEightBitLookup.java b/gnu/java/io/encode/EncoderEightBitLookup.java index 7f6e89f77..3e341da2f 100644 --- a/gnu/java/io/encode/EncoderEightBitLookup.java +++ b/gnu/java/io/encode/EncoderEightBitLookup.java @@ -89,6 +89,21 @@ loadTable() /*************************************************************************/ +/* + * Constructors + */ +public +EncoderEightBitLookup(OutputStream out) +{ + super(out); +} + +/*************************************************************************/ + +/* + * Instance Methods + */ + /** * This method returns the number of bytes that can be converted out of * the len chars in the specified array starting at @@ -133,21 +148,6 @@ convertToBytes(char[] buf, int buf_offset, int len, byte[] bbuf, /*************************************************************************/ -/* - * Constructors - */ -public -EncoderEightBitLookup(OutputStream out) -{ - super(out); -} - -/*************************************************************************/ - -/* - * Instance Methods - */ - /** * Write the requested number of chars to the underlying stream */ -- cgit v1.2.1