James Moger
2015-03-07 d40a44c8c8df8f6bd81c93e72314224f85656f18
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);
}