James Moger
2015-11-19 e41e8f8c3bc9f5edab1d271464364f95620ece8c
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);
}