diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2017-12-19 11:55:51 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2017-12-20 22:10:09 +0100 |
commit | 781e106a2607665a7a47b626fd5b67fa8b491d18 (patch) | |
tree | de19ed5137ce0e3fde078566dfa98ca09e6e7c95 /org.eclipse.jgit/src/org/eclipse/jgit/transport/PostUploadHook.java | |
parent | c1a02f497a945d51b205c13a71f94c539ef0079b (diff) | |
download | jgit-781e106a2607665a7a47b626fd5b67fa8b491d18.tar.gz jgit-781e106a2607665a7a47b626fd5b67fa8b491d18.zip |
Fix javadoc in org.eclipse.jgit transport package
Change-Id: Id70e2c27e38bf12f87e66b28fbd0b06908494764
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/transport/PostUploadHook.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/PostUploadHook.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/PostUploadHook.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/PostUploadHook.java index 5b37bcdf0c..09667eb01a 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/PostUploadHook.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/PostUploadHook.java @@ -42,11 +42,11 @@ package org.eclipse.jgit.transport; -import org.eclipse.jgit.internal.storage.pack.PackWriter; import org.eclipse.jgit.storage.pack.PackStatistics; /** - * Hook invoked by {@link UploadPack} after the pack has been uploaded. + * Hook invoked by {@link org.eclipse.jgit.transport.UploadPack} after the pack + * has been uploaded. * <p> * Implementors of the interface are responsible for associating the current * thread to a particular connection, if they need to also include connection @@ -68,8 +68,9 @@ public interface PostUploadHook { * Notifies the hook that a pack has been sent. * * @param stats - * the statistics gathered by {@link PackWriter} for the uploaded - * pack + * the statistics gathered by + * {@link org.eclipse.jgit.internal.storage.pack.PackWriter} for + * the uploaded pack */ public void onPostUpload(PackStatistics stats); } |