Skip to content

Commit

Permalink
fix indents
Browse files Browse the repository at this point in the history
  • Loading branch information
goojal committed Feb 19, 2024
1 parent 2346592 commit 3e12be2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion engine/Decompiler.Tests/Helpers/TestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private static void AssertFileContent(string expectedFileName, string actualFile
// XmlDocument actualDocument = LoadXml(actualFileName);

// XmlDiff xmldiff = new XmlDiff(XmlDiffOptions.IgnoreChildOrder |
// XmlDiffOptions.IgnoreNamespaces |expectedFileText.Replace("\r\n", "\n")
// XmlDiffOptions.IgnoreNamespaces |
// XmlDiffOptions.IgnorePrefixes);

// Assert.True(xmldiff.Compare(expectedDocument, actualDocument));
Expand Down
8 changes: 4 additions & 4 deletions engine/Mono.Cecil.Shared/Mono.Cecil.PE/Image.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ sealed class Image {
public ModuleKind Kind;
public string RuntimeVersion;
public TargetArchitecture Architecture;
/* AGPL */
public PlatformSpecificTargetArchitecture ExtendedArchitecture;
/* End AGPL */
public ModuleCharacteristics Characteristics;
/* AGPL */
public PlatformSpecificTargetArchitecture ExtendedArchitecture;
/* End AGPL */
public ModuleCharacteristics Characteristics;
public string FileName;

public Section [] Sections;
Expand Down
2 changes: 1 addition & 1 deletion engine/Mono.Cecil.Shared/Mono.Cecil.PE/ImageReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void ReadImage ()
}

/* AGPL */
TargetArchitecture GetTargetArchitecture(PlatformSpecificTargetArchitecture p)
TargetArchitecture GetTargetArchitecture(PlatformSpecificTargetArchitecture p)
{
switch (p)
{
Expand Down
2 changes: 1 addition & 1 deletion engine/Tools.MSBuildProjectBuilder.Shared/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static class Utilities
'\u001a', '\u001b', '\u001c', '\u001d', '\u001e', '\u001f', ':', '*', '?', '\\',
'/'
};
public static string GetLegalFileName(string legalName)
public static string GetLegalFileName(string legalName)
{
if (legalName.Length == 0)
{
Expand Down

0 comments on commit 3e12be2

Please sign in to comment.