Minor javadoc wording fixes in ReceivePack

Change-Id: I5b409ef39aee890bcd7d4277e36b85ac4dc48281
This commit is contained in:
Dave Borowitz 2012-02-27 11:56:55 -08:00 committed by Shawn O. Pearce
parent 27cbdaf497
commit bb8f0bec4a
1 changed files with 2 additions and 2 deletions

View File

@ -484,7 +484,7 @@ public void setRefFilter(final RefFilter refFilter) {
this.refFilter = refFilter != null ? refFilter : RefFilter.DEFAULT; this.refFilter = refFilter != null ? refFilter : RefFilter.DEFAULT;
} }
/** @return get the hook invoked before updates occur. */ /** @return the hook invoked before updates occur. */
public PreReceiveHook getPreReceiveHook() { public PreReceiveHook getPreReceiveHook() {
return preReceive; return preReceive;
} }
@ -507,7 +507,7 @@ public void setPreReceiveHook(final PreReceiveHook h) {
preReceive = h != null ? h : PreReceiveHook.NULL; preReceive = h != null ? h : PreReceiveHook.NULL;
} }
/** @return get the hook invoked after updates occur. */ /** @return the hook invoked after updates occur. */
public PostReceiveHook getPostReceiveHook() { public PostReceiveHook getPostReceiveHook() {
return postReceive; return postReceive;
} }