diff --git a/src/main/java/com/webcodepro/shrinkit/HeaderBlock.java b/src/main/java/com/webcodepro/shrinkit/HeaderBlock.java index a76106a..4bbf2f5 100644 --- a/src/main/java/com/webcodepro/shrinkit/HeaderBlock.java +++ b/src/main/java/com/webcodepro/shrinkit/HeaderBlock.java @@ -16,7 +16,7 @@ import com.webcodepro.shrinkit.io.LittleEndianByteInputStream; * version, and those are documented in the getter methods. * * @author robgreene@users.sourceforge.net - * @see http://www.nulib.com/library/FTN.e08002.htm + * @see Apple II File Type Note $E0/$8002 */ public class HeaderBlock { private int headerCrc; diff --git a/src/main/java/com/webcodepro/shrinkit/MasterHeaderBlock.java b/src/main/java/com/webcodepro/shrinkit/MasterHeaderBlock.java index efe05db..7568820 100644 --- a/src/main/java/com/webcodepro/shrinkit/MasterHeaderBlock.java +++ b/src/main/java/com/webcodepro/shrinkit/MasterHeaderBlock.java @@ -15,7 +15,7 @@ import com.webcodepro.shrinkit.io.LittleEndianByteInputStream; * version, and those are documented in the getter methods. * * @author robgreene@users.sourceforge.net - * @see http://www.nulib.com/library/FTN.e08002.htm + * @see Apple II File Type Note $E0/$8002 */ public class MasterHeaderBlock { private static final int MASTER_HEADER_LENGTH = 48; diff --git a/src/main/java/com/webcodepro/shrinkit/TimeRec.java b/src/main/java/com/webcodepro/shrinkit/TimeRec.java index 7ae035e..902bcda 100644 --- a/src/main/java/com/webcodepro/shrinkit/TimeRec.java +++ b/src/main/java/com/webcodepro/shrinkit/TimeRec.java @@ -75,9 +75,8 @@ public class TimeRec { /** * Convert the TimeRec into a Java Date object. - * Note that years 1900-1939 are assumed to be 2000-2039 per the NuFX addendum - * at http://www.nulib.com/library/nufx-addendum.htm. - * @see http://www.nulib.com/library/nufx-addendum.htm + * Note that years 1900-1939 are assumed to be 2000-2039 per the NuFX addendum. + * @see NuFX addendum */ public Date getDate() { int year = data[YEAR]+1900; diff --git a/src/main/java/com/webcodepro/shrinkit/io/ByteConstants.java b/src/main/java/com/webcodepro/shrinkit/io/ByteConstants.java index e1c7e1a..2c77d20 100644 --- a/src/main/java/com/webcodepro/shrinkit/io/ByteConstants.java +++ b/src/main/java/com/webcodepro/shrinkit/io/ByteConstants.java @@ -6,7 +6,7 @@ package com.webcodepro.shrinkit.io; * * @author robgreene@users.sourceforge.net * @see LittleEndianByteInputStream - * @see ByteTarget + * @see LittleEndianByteOutputStream */ public interface ByteConstants { /** Master Header Block identifier "magic" bytes. */ diff --git a/src/main/java/com/webcodepro/shrinkit/io/LittleEndianByteInputStream.java b/src/main/java/com/webcodepro/shrinkit/io/LittleEndianByteInputStream.java index bf5c145..65f21b9 100644 --- a/src/main/java/com/webcodepro/shrinkit/io/LittleEndianByteInputStream.java +++ b/src/main/java/com/webcodepro/shrinkit/io/LittleEndianByteInputStream.java @@ -135,9 +135,8 @@ public class LittleEndianByteInputStream extends InputStream implements ByteCons } /** * Read the TimeRec into a Java Date object. - * Note that years 00-39 are assumed to be 2000-2039 per the NuFX addendum - * at http://www.nulib.com/library/nufx-addendum.htm. - * @see http://www.nulib.com/library/nufx-addendum.htm + * Note that years 00-39 are assumed to be 2000-2039 per the NuFX addendum. + * @see NuFX addendum */ public Date readDate() throws IOException { byte[] data = readBytes(TIMEREC_LENGTH); diff --git a/src/main/java/com/webcodepro/shrinkit/io/LittleEndianByteOutputStream.java b/src/main/java/com/webcodepro/shrinkit/io/LittleEndianByteOutputStream.java index 0d1eaaa..98c1eb0 100644 --- a/src/main/java/com/webcodepro/shrinkit/io/LittleEndianByteOutputStream.java +++ b/src/main/java/com/webcodepro/shrinkit/io/LittleEndianByteOutputStream.java @@ -64,9 +64,8 @@ public class LittleEndianByteOutputStream extends OutputStream implements ByteCo } /** * Write the Java Date object as a TimeRec. - * Note that years 2000-2039 are assumed to be 00-39 per the NuFX addendum - * at http://www.nulib.com/library/nufx-addendum.htm. - * @see http://www.nulib.com/library/nufx-addendum.htm + * Note that years 2000-2039 are assumed to be 00-39 per the NuFX addendum. + * @see NuFX addendum */ public void writeDate(Date date) throws IOException { byte[] data = null; diff --git a/src/main/java/com/webcodepro/shrinkit/io/LzwInputStream.java b/src/main/java/com/webcodepro/shrinkit/io/LzwInputStream.java index 3204544..4a54ea3 100644 --- a/src/main/java/com/webcodepro/shrinkit/io/LzwInputStream.java +++ b/src/main/java/com/webcodepro/shrinkit/io/LzwInputStream.java @@ -49,7 +49,7 @@ public class LzwInputStream extends InputStream { * Fill the buffer up with some decompressed data. * This may range from one byte to many bytes, depending on what is in the * dictionary. - * @see http://en.wikipedia.org/wiki/Lzw for the general algorithm + * @see Wikipedia for the general algorithm */ public void fillBuffer() throws IOException { if (dictionary == null) { diff --git a/src/main/java/com/webcodepro/shrinkit/io/RleOutputStream.java b/src/main/java/com/webcodepro/shrinkit/io/RleOutputStream.java index b365245..7d193b8 100644 --- a/src/main/java/com/webcodepro/shrinkit/io/RleOutputStream.java +++ b/src/main/java/com/webcodepro/shrinkit/io/RleOutputStream.java @@ -72,7 +72,7 @@ public class RleOutputStream extends OutputStream { } /** - * Close out the data stream. Makes sure the repeate buffer + * Close out the data stream. Makes sure the repeat buffer * is flushed. */ public void close() throws IOException {