Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-01-18 08:17:53 +0000
committerDani Megert2013-01-18 08:17:53 +0000
commit5b13b579b31efdb2badf795a173b4161152ab3e5 (patch)
treeaf8b430b48171e5314bc6f8900b999ee5e7f2005
parent698705c7543de64b73c73ebbaba871f98fc7fed6 (diff)
downloadjgit-5b13b579b31efdb2badf795a173b4161152ab3e5.tar.gz
jgit-5b13b579b31efdb2badf795a173b4161152ab3e5.tar.xz
jgit-5b13b579b31efdb2badf795a173b4161152ab3e5.zip
Use correct method link in Javadoc
Change-Id: I7fb5a44910a4738bbb14ad025cee7cbedbba2d07 Signed-off-by: Dani Megert <Daniel_Megert@ch.ibm.com>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java6
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsPackDescription.java4
2 files changed, 6 insertions, 4 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java
index 9a2aff4fae..2070d80157 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsOutputStream.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011, Google Inc.
+ * Copyright (C) 2011, 2012 Google Inc. and others.
* and other copyright owners as documented in the project's IP log.
*
* This program and the accompanying materials are made available
@@ -47,10 +47,12 @@ import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
+import org.eclipse.jgit.storage.pack.PackExt;
+
/**
* Output stream to create a file on the DFS.
*
- * @see DfsObjDatabase#writeFile(DfsPackDescription, String)
+ * @see DfsObjDatabase#writeFile(DfsPackDescription, PackExt)
*/
public abstract class DfsOutputStream extends OutputStream {
/**
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsPackDescription.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsPackDescription.java
index 3d3d80de93..a793d3c820 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsPackDescription.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/dfs/DfsPackDescription.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011, Google Inc.
+ * Copyright (C) 2011, 2013 Google Inc., and others.
* and other copyright owners as documented in the project's IP log.
*
* This program and the accompanying materials are made available
@@ -84,7 +84,7 @@ public class DfsPackDescription implements Comparable<DfsPackDescription> {
* <p>
* The corresponding index file is assumed to exist. If this is not true
* implementors must extend the class and override
- * {@link #getFileName(String)}.
+ * {@link #getFileName(PackExt)}.
* <p>
* Callers should also try to fill in other fields if they are reasonably
* free to access at the time this instance is being initialized.

Back to the top