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

« back to all changes in this revision

Viewing changes to external/ngit/NGit/NGit.Blame/BlameGenerator.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:
54
54
 
55
55
namespace NGit.Blame
56
56
{
57
 
        /// <summary>Generate author information for lines based on introduction to the file.
58
 
        ///     </summary>
 
57
        /// <summary>Generate author information for lines based on a provided file.</summary>
59
58
        /// <remarks>
60
 
        /// Generate author information for lines based on introduction to the file.
 
59
        /// Generate author information for lines based on a provided file.
61
60
        /// <p>
62
61
        /// Applications that want a simple one-shot computation of blame for a file
63
62
        /// should use
141
140
                /// <remarks>Blame is currently assigned to this source.</remarks>
142
141
                private Candidate currentSource;
143
142
 
144
 
                /// <summary>Create a blame generator for the repository and path</summary>
 
143
                /// <summary>
 
144
                /// Create a blame generator for the repository and path (relative to
 
145
                /// repository)
 
146
                /// </summary>
145
147
                /// <param name="repository">repository to access revision data from.</param>
146
 
                /// <param name="path">initial path of the file to start scanning.</param>
 
148
                /// <param name="path">
 
149
                /// initial path of the file to start scanning (relative to the
 
150
                /// repository).
 
151
                /// </param>
147
152
                public BlameGenerator(Repository repository, string path)
148
153
                {
149
154
                        this.repository = repository;