summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAaron M. Renn <arenn@urbanophile.com>1998-08-02 02:51:57 +0000
committerAaron M. Renn <arenn@urbanophile.com>1998-08-02 02:51:57 +0000
commit0a88164c497ea6b20df7e6f5f399c1ddcb048f5b (patch)
tree1a6db19782ed9b387ae4a1fcd5f245184da7fd62 /gnu
parent423c0906226dd20321bb82077d41a6ba65f44c49 (diff)
downloadclasspath-0a88164c497ea6b20df7e6f5f399c1ddcb048f5b.tar.gz
Minor organizational cleanup
Diffstat (limited to 'gnu')
-rw-r--r--gnu/java/io/decode/DecoderEightBitLookup.java28
-rw-r--r--gnu/java/io/encode/ChangeLog6
-rw-r--r--gnu/java/io/encode/EncoderEightBitLookup.java30
3 files changed, 33 insertions, 31 deletions
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 <devel@larissa.foo.com>
+
+ * 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 <devel@larissa.foo.com>
* 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 <code>len</code> 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
*/