James Moger
2014-10-31 67ba8f57e15ddf8d8dece57a276e37a4b3ef7f01
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);
}