diff options
author | Tomasz Zarna <tomasz.zarna@tasktop.com> | 2014-01-14 09:46:40 +0100 |
---|---|---|
committer | Tomasz Zarna <tomasz.zarna@tasktop.com> | 2014-01-14 10:19:50 +0100 |
commit | 0a38e08c1c7c676116bffaaa8c32b38337597903 (patch) | |
tree | 0650b6d4f3b30aae57a17330e7b7ab0115e18bd4 | |
parent | ce5fd525be80d664db5f7263f8a4c961e320940e (diff) | |
download | jgit-0a38e08c1c7c676116bffaaa8c32b38337597903.tar.gz jgit-0a38e08c1c7c676116bffaaa8c32b38337597903.zip |
fix link to EWAHCompressedBitmap in javadoc of SimpleDataInput/Output
Change-Id: Iaa07bb23f163b75e222bc6a5ce3acc91ffef435e
Signed-off-by: Tomasz Zarna <tomasz.zarna@tasktop.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataInput.java | 2 | ||||
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataOutput.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataInput.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataInput.java index 9cd9e806a6..a7330681fb 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataInput.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataInput.java @@ -53,7 +53,7 @@ import org.eclipse.jgit.util.NB; /** * An implementation of DataInput that only handles readInt() and readLong() * using the Git conversion utilities for network byte order handling. This is - * needed to read {@link javaewah.EWAHCompressedBitmap}s. + * needed to read {@link com.googlecode.javaewah.EWAHCompressedBitmap}s. */ class SimpleDataInput implements DataInput { private final InputStream fd; diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataOutput.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataOutput.java index 1bcb62bd5f..d9c899ae59 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataOutput.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataOutput.java @@ -53,7 +53,7 @@ import org.eclipse.jgit.util.NB; * An implementation of {@link DataOutput} that only handles * {@link #writeInt(int)} and {@link #writeLong(long)} using the Git conversion * utilities for network byte order handling. This is needed to write - * {@link javaewah.EWAHCompressedBitmap}s. + * {@link com.googlecode.javaewah.EWAHCompressedBitmap}s. */ class SimpleDataOutput implements DataOutput { private final OutputStream fd; |