~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/ngit/NGit/NGit.Transport/AbstractAdvertiseRefsHook.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
        /// that advertises the same refs for
56
56
        /// upload-pack and receive-pack.
57
57
        /// </summary>
 
58
        /// <since>2.0</since>
58
59
        public abstract class AbstractAdvertiseRefsHook : AdvertiseRefsHook
59
60
        {
60
61
                /// <exception cref="NGit.Transport.ServiceMayNotContinueException"></exception>
65
66
                }
66
67
 
67
68
                /// <exception cref="NGit.Transport.ServiceMayNotContinueException"></exception>
68
 
                public override void AdvertiseRefs(ReceivePack receivePack)
 
69
                public override void AdvertiseRefs(BaseReceivePack receivePack)
69
70
                {
70
71
                        IDictionary<string, Ref> refs = GetAdvertisedRefs(receivePack.GetRepository(), receivePack
71
72
                                .GetRevWalk());
91
92
                /// <param name="revWalk">open rev walk on the repository.</param>
92
93
                /// <returns>
93
94
                /// set of additional haves; see
94
 
                /// <see cref="ReceivePack.GetAdvertisedObjects()">ReceivePack.GetAdvertisedObjects()
 
95
                /// <see cref="BaseReceivePack.GetAdvertisedObjects()">BaseReceivePack.GetAdvertisedObjects()
95
96
                ///     </see>
96
97
                /// .
97
98
                /// </returns>