James Moger
2014-04-17 fa205f0c6bfa572a503caee44b5ff9f5086f99fb
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);
}