8000 Remove trailing whitespaces · apfunk/libgit2sharp@520b1aa · GitHub
[go: up one dir, main page]

Skip to content

Commit 520b1aa

Browse files
committed
Remove trailing whitespaces
1 parent 7468526 commit 520b1aa

9 files changed

+13
-13
lines changed

LibGit2Sharp.Tests/MergeFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public void MergeReportsCheckoutProgress()
351351
using (var repo = new Repository(repoPath))
352352
{
353353
Commit commitToMerge = repo.Branches["normal_merge"].Tip;
354-
354+
355355
bool wasCalled = false;
356356

357357
MergeOptions options = new MergeOptions()

LibGit2Sharp.Tests/ObjectDatabaseFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ public void CanShortenObjectIdentifier()
563563
/*
564564
* $ echo "aabqhq" | git hash-object -t blob --stdin
565565
* dea509d0b3cb8ee0650f6ca210bc83f4678851ba
566-
*
566+
*
567567
* $ echo "aaazvc" | git hash-object -t blob --stdin
568568
* dea509d097ce692e167dfc6a48a7a280cc5e877e
569569
*/

LibGit2Sharp.Tests/OdbBackendFixture.cs

Lines changed: 2 additions & 2 deletions
8000
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public void CanShortenObjectIdentifier()
183183
/*
184184
* $ echo "aabqhq" | git hash-object -t blob --stdin
185185
* dea509d0b3cb8ee0650f6ca210bc83f4678851ba
186-
*
186+
*
187187
* $ echo "aaazvc" | git hash-object -t blob --stdin
188188
* dea509d097ce692e167dfc6a48a7a280cc5e877e
189189
*/
@@ -386,7 +386,7 @@ public override bool Exists(ObjectId oid)
386386

387387
public override int ExistsPrefix(string shortSha, out ObjectId found)
388388
{
389-
found = null;
389+
found = null;
390390
int numFound = 0;
391391

392392
foreach (ObjectId id in m_objectIdToContent.Keys)

LibGit2Sharp.Tests/RepositoryFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public void CanRetrieveValidVersionString()
110110

111111
Assert.True(regexResult.Success, "The following version string format is enforced:" +
112112
"Major.Minor.Patch-LibGit2Sharp_abbrev_hash-libgit2_abbrev_hash (x86|amd64 - features)");
113-
113+
114114
GroupCollection matchGroups = regexResult.Groups;
115115

116116
// Check that all groups are valid

LibGit2Sharp.Tests/TagFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ public void CanReadTagWithoutTagger()
385385

386386
Tree tree = repo.Lookup<Tree>("581f9824ecaf824221bd36edf5430f2739a7c4f5");
387387
Assert.NotNull(tree);
388-
388+
389389
Assert.Equal(tree.Id, tag.Target.Id);
390390
}
391391
}

LibGit2Sharp/CherryPickOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public CherryPickOptions()
4949

5050
/// <summary>
5151
/// When cherry picking a merge commit, the parent number to consider as
52-
/// mainline, starting from offset 1.
52+
/// mainline, starting from offset 1.
5353
/// <para>
5454
/// As a merge commit has multiple parents, cherry picking a merge commit
5555
/// will reverse all the changes brought in by the merge except for

LibGit2Sharp/Core/Proxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static ObjectId git_blob_create_fromchunks(RepositorySafeHandle repo, Fil
7373

7474
if (res == (int)GitErrorCode.User)
7575
{
76-
throw new EndOfStreamException("The stream ended unexpectedly");
76+
throw new EndOfStreamException("The stream ended unexpectedly");
7777
}
7878

7979
Ensure.ZeroResult(res);

LibGit2Sharp/Index.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ IEnumerator IEnumerable.GetEnumerator()
129129

130130
/// <summary>
131131
/// Promotes to the staging area the latest modifications of a file in the working directory (addition, updation or removal).
132-
///
132+
///
133133
/// If this path is ignored by configuration then it will not be staged.
134134
/// </summary>
135135
/// <param name="path">The path of the file within the working directory.</param>
@@ -145,7 +145,7 @@ public virtual void Stage(string path, ExplicitPathsOptions explicitPathsOptions
145145

146146
/// <summary>
147147
/// Promotes to the staging area the latest modifications of a file in the working directory (addition, updation or removal).
148-
///
148+
///
149149
/// If this path is ignored by configuration then it will not be staged unless <see cref="StageOptions.IncludeIgnored"/> is unset.
150150
/// </summary>
151151
/// <param name="path">The path of the file within the working directory.</param>
@@ -159,7 +159,7 @@ public virtual void Stage(string path, StageOptions stageOptions = null)
159159

160160
/// <summary>
161161
/// Promotes to the staging area the latest modifications of a collection of files in the working directory (addition, updation or removal).
162-
///
162+
///
163163
/// Any paths (even those listed explicitly) that are ignored by configuration will not be staged.
164164
/// </summary>
165165
/// <param name="paths">The collection of paths of the files within the working directory.</param>
@@ -175,7 +175,7 @@ public virtual void Stage(IEnumerable<string> paths, ExplicitPathsOptions explic
175175

176176
/// <summary>
177177
/// Promotes to the staging area the latest modifications of a collection of files in the working directory (addition, updation or removal).
178-
///
178+
///
179179
/// Any paths (even those listed explicitly) that are ignored by configuration will not be staged unless <see cref="StageOptions.IncludeIgnored"/> is unset.
180180
/// </summary>
181181
/// <param name="paths">The collection of paths of the files within the working directory.</param>

LibGit2Sharp/RevertOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public RevertOptions()
4949

5050
/// <summary>
5151
/// When reverting a merge commit, the parent number to consider as
52-
/// mainline, starting from offset 1.
52+
/// mainline, starting from offset 1.
5353
/// <para>
5454
/// As a merge commit has multiple parents, reverting a merge commit
5555
/// will reverse all the changes brought in by the merge except for

0 commit comments

Comments
 (0)
0