Skip to content

Commit 5455fca

Browse files
author
GitHub Actions Autoformatter
committed
Auto-format source code
1 parent 71e3557 commit 5455fca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/assembly-preparer/BaseClass.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void AssertPrepareCode (ApplePlatform platform, Action<AssemblyPreparer>?
4646
if (configure is not null)
4747
configure (preparer);
4848
AssertPrepare (preparer);
49-
49+
5050
outputPath = Path.Combine (assemblyDir, "Test.dll");
5151
}
5252
}

tools/assembly-preparer/Scaffolding/Application.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Xamarin.Bundler;
44

55
public class Application {
6-
Application () {}
6+
Application () { }
77
public ApplePlatform Platform { get => throw new NotImplementedException (); }
88
public string ProductName => throw new NotImplementedException ();
99
public void LoadSymbols ()

tools/assembly-preparer/Scaffolding/DerivedLinkContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public IEnumerable<ICustomAttribute> GetCustomAttributes (ICustomAttributeProvid
3939
// Types which never have TypeDefinition or can have ambiguous definition should not be passed in
4040
//
4141
if (typeReference is GenericParameter || (typeReference is TypeSpecification && typeReference is not GenericInstanceType))
42-
throw new NotSupportedException($"TypeDefinition cannot be resolved from '{typeReference.GetType()}' type");
42+
throw new NotSupportedException ($"TypeDefinition cannot be resolved from '{typeReference.GetType ()}' type");
4343

4444
return typeReference.Resolve ();
4545
}

0 commit comments

Comments
 (0)