Browse Source

fix link to EWAHCompressedBitmap in javadoc of SimpleDataInput/Output

Change-Id: Iaa07bb23f163b75e222bc6a5ce3acc91ffef435e
Signed-off-by: Tomasz Zarna <tomasz.zarna@tasktop.com>
tags/v3.3.0.201402191814-rc1
Tomasz Zarna 10 years ago
parent
commit
0a38e08c1c

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataInput.java View File

@@ -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;

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/SimpleDataOutput.java View File

@@ -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;

Loading…
Cancel
Save