Milos Cubrilo
2015-01-11 a9a2ffcf9a34bd25fe2e05bfdd4cde74725bb17d
src/main/java/com/gitblit/extensions/ReceiveHook.java
@@ -27,7 +27,7 @@
 * Extension point for plugins to process commits on Pre- and Post- Receive.
 *
 * @author James Moger
 *
 * @since 1.5.0
 */
public abstract class ReceiveHook implements ExtensionPoint {
@@ -38,6 +38,7 @@
    *
    * @param receivePack
    * @param commands
    * @since 1.5.0
    */
   public abstract void onPreReceive(GitblitReceivePack receivePack, Collection<ReceiveCommand> commands);
@@ -48,6 +49,7 @@
    *
    * @param receivePack
    * @param commands
    * @since 1.5.0
    */
   public abstract void onPostReceive(GitblitReceivePack receivePack, Collection<ReceiveCommand> commands);
}