8000 Remove trailing white spaces · joncham/libgit2sharp@7fa704c · GitHub
[go: up one dir, main page]

Skip to content

Commit 7fa704c

Browse files
committed
Remove trailing white spaces
1 parent 66cbcc0 commit 7fa704c

25 files changed

+53
-56
lines changed

BACKLOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@
2929
- Add Reference equality test suite
3030
- Remove Ignore attribute from ReferenceFixture.CanMoveAReferenceToADeeperReferenceHierarchy() once git_reference_rename() is fixed
3131
- Remove Ignore attribute from ReferenceFixture.CanMoveAReferenceToAUpperReferenceHierarchy() once git_reference_rename() is fixed
32-
32+
3333
### Miscellaneous
3434

3535
- Run the build on a Unix platform
36-

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,3 @@
7070
## v0.1.0
7171

7272
- Initial release
73-

CI-build.msbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
Force32Bit="true"
3636
OutputXmlFile="$(DeployFolder)\Test-result.xml" />
3737
</Target>
38-
38+
3939
<Target Name="Deploy" DependsOnTargets="Test">
4040
<Copy SourceFiles="@(OutputFiles)"
4141
DestinationFiles="@(OutputFiles->'$(DeployFolder)\%(RecursiveDir)%(Filename)%(Extension)')" />

LICENSE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
22-

LibGit2Sharp.Tests/BranchFixture.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public void CanMoveABranchWhileOverwritingAnExistingOne()
328328
newTest.Tip.ShouldEqual(br2.Tip);
329329
}
330330
}
331-
331+
332332
[Test]
333333
public void CreatingABranchTriggersTheCreationOfADirectReference()
334334
{
@@ -337,7 +337,7 @@ public void CreatingABranchTriggersTheCreationOfADirectReference()
337337
{
338338
var newBranch = repo.CreateBranch("clone-of-master");
339339
newBranch.IsCurrentRepositoryHead.ShouldBeFalse();
340-
340+
341341
var commitId = repo.Head.Tip.Id;
342342
newBranch.Tip.Id.ShouldEqual(commitId);
343343

LibGit2Sharp.Tests/CommitFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public void CanEnumerateUsingTwoAbbreviatedShasAsBoundaries()
219219
CollectionAssert.AreEquivalent(new[] { "a4a7dce", "c47800c", "9fd738e" }, abbrevShas);
220220
}
221221
}
222-
222+
223223
[Test]
224224
public void CanLookupCommitGeneric()
225225
{

LibGit2Sharp.Tests/IndexFixture.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class IndexFixture : BaseFixture
1616
"new.txt",
1717
"branch_file.txt",
1818
"1/branch_file.txt",
19-
//"deleted_staged_file.txt",
19+
//"deleted_staged_file.txt",
2020
"deleted_unstaged_file.txt",
2121
"modified_staged_file.txt",
2222
"modified_unstaged_file.txt",
@@ -123,10 +123,10 @@ public void StagingANewVersionOfAFileThenUnstagingRevertsTheBlobToTheVersionOfHe
123123
const string fileName = "myFile.txt";
124124

125125
var fullpath = Path.Combine(repo.Info.WorkingDirectory, fileName);
126-
126+
127127
const string initialContent = "Hello?";
128128
File.AppendAllText(fullpath, initialContent);
129-
129+
130130
repo.Index.Stage(fileName);
131131
var blobId = repo.Index[fileName].Id;
132132

LibGit2Sharp.Tests/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Reflection;
22
using System.Runtime.InteropServices;
33

4-
// General Information about an assembly is controlled through the following
4+
// General Information about an assembly is controlled through the following
55
// set of attributes. Change these attribute values to modify the information
66
// associated with an assembly.
77

@@ -14,8 +14,8 @@
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
1919
// COM, set the ComVisible attribute to true on that type.
2020

2121
[assembly: ComVisible(false)]
@@ -27,11 +27,11 @@
2727
// Version information for an assembly consists of the following four values:
2828
//
2929
// Major Version
30-
// Minor Version
30+
// Minor Version
3131
// Build Number
3232
// Revision
3333
//
34-
// You can specify all the values or you can default the Build and Revision Numbers
34+
// You can specify all the values or you can default the Build and Revision Numbers
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737

LibGit2Sharp.Tests/ReferenceFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ public void CanMoveAndOverWriteAExistingReference()
436436
{
437437
const string oldName = "refs/heads/packed";
438438
const string newName = "refs/heads/br2";
439-
439+
440440
Reference moved = repo.Refs.Move(oldName, newName, true);
441441

442442
repo.Refs[oldName].ShouldBeNull();

LibGit2Sharp.Tests/RepositoryFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private void CheckGitConfigFile(string dir)
6767
private static void AssertIsHidden(string repoPath)
6868
{
6969
var attribs = File.GetAttributes(repoPath);
70-
70+
7171
(attribs & FileAttributes.Hidden).ShouldEqual(FileAttributes.Hidden);
7272
}
7373

0 commit comments

Comments
 (0)
0