Skip to content

Commit 7ec4491

Browse files
authored
Reformat code to pass scancode (#53)
1 parent 9b96e80 commit 7ec4491

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

core/dotnet2.2/proxy/Apache.OpenWhisk.Runtime.Common/Run.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ await Console.Error.WriteLineAsync(
8282
try
8383
{
8484
JObject output;
85-
85+
8686
if(_awaitableMethod) {
8787
output = (JObject) await (dynamic) _method.Invoke(owObject, new object[] {valObject});
8888
}

core/dotnet2.2/proxy/Apache.OpenWhisk.Runtime.Common/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static void WriteLogMarkers()
3131
Console.WriteLine("XXX_THE_END_OF_A_WHISK_ACTIVATION_XXX");
3232
Console.Error.WriteLine("XXX_THE_END_OF_A_WHISK_ACTIVATION_XXX");
3333
}
34-
34+
3535
public void Configure(IApplicationBuilder app)
3636
{
3737
PathString initPath = new PathString("/init");

core/dotnet2.2/proxy/Apache.OpenWhisk.Runtime.Dotnet.Minimal/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ static void Main(string[] args)
2929
{
3030
CreateWebHostBuilder(args).Build().Run();
3131
}
32-
32+
3333
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
3434
WebHost.CreateDefaultBuilder(args)
3535
.UseKestrel(options =>
@@ -40,7 +40,7 @@ public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
4040
{
4141
logging.ClearProviders();
4242
})
43-
.SuppressStatusMessages(true)
43+
.SuppressStatusMessages(true)
4444
.UseStartup<Startup>();
4545

4646
}

core/dotnet3.1/proxy/Apache.OpenWhisk.Runtime.Common/Run.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ await Console.Error.WriteLineAsync(
8282
try
8383
{
8484
JObject output;
85-
85+
8686
if(_awaitableMethod) {
8787
output = (JObject) await (dynamic) _method.Invoke(owObject, new object[] {valObject});
8888
}

core/dotnet3.1/proxy/Apache.OpenWhisk.Runtime.Common/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static void WriteLogMarkers()
2828
Console.WriteLine("XXX_THE_END_OF_A_WHISK_ACTIVATION_XXX");
2929
Console.Error.WriteLine("XXX_THE_END_OF_A_WHISK_ACTIVATION_XXX");
3030
}
31-
31+
3232
public void Configure(IApplicationBuilder app)
3333
{
3434
PathString initPath = new PathString("/init");

core/dotnet3.1/proxy/Apache.OpenWhisk.Runtime.Dotnet.Minimal/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ static void Main(string[] args)
2929
{
3030
CreateWebHostBuilder(args).Build().Run();
3131
}
32-
32+
3333
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
3434
WebHost.CreateDefaultBuilder(args)
3535
.UseKestrel(options =>
@@ -40,7 +40,7 @@ public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
4040
{
4141
logging.ClearProviders();
4242
})
43-
.SuppressStatusMessages(true)
43+
.SuppressStatusMessages(true)
4444
.UseStartup<Startup>();
4545

4646
}

0 commit comments

Comments
 (0)