Rename Main2() -> Main()

This commit is contained in:
de4dot 2013-11-15 21:55:09 +01:00
parent 413b64766e
commit 5d308cc5df
10 changed files with 10 additions and 10 deletions

View File

@ -26,7 +26,7 @@ using AssemblyData;
namespace AssemblyServer {
public static class Start {
public static int Main2(string[] args) {
public static int Main(string[] args) {
if (args.Length != 3)
Environment.Exit(1);
var serviceType = (AssemblyServiceType)int.Parse(args[0]);

View File

@ -20,7 +20,7 @@
namespace AssemblyServer_CLR20_x64 {
class Program {
static int Main(string[] args) {
return AssemblyServer.Start.Main2(args);
return AssemblyServer.Start.Main(args);
}
}
}

View File

@ -20,7 +20,7 @@
namespace AssemblyServer_CLR20 {
class Program {
static int Main(string[] args) {
return AssemblyServer.Start.Main2(args);
return AssemblyServer.Start.Main(args);
}
}
}

View File

@ -20,7 +20,7 @@
namespace AssemblyServer_CLR40_x64 {
class Program {
static int Main(string[] args) {
return AssemblyServer.Start.Main2(args);
return AssemblyServer.Start.Main(args);
}
}
}

View File

@ -20,7 +20,7 @@
namespace AssemblyServer_CLR40 {
class Program {
static int Main(string[] args) {
return AssemblyServer.Start.Main2(args);
return AssemblyServer.Start.Main(args);
}
}
}

View File

@ -20,7 +20,7 @@
namespace AssemblyServer_x64 {
class Program {
static int Main(string[] args) {
return AssemblyServer.Start.Main2(args);
return AssemblyServer.Start.Main(args);
}
}
}

View File

@ -20,7 +20,7 @@
namespace AssemblyServer_x86 {
class Program {
static int Main(string[] args) {
return AssemblyServer.Start.Main2(args);
return AssemblyServer.Start.Main(args);
}
}
}

View File

@ -20,7 +20,7 @@
namespace de4dot_x64 {
class Program {
static int Main(string[] args) {
return de4dot.cui.Program.Main2(args);
return de4dot.cui.Program.Main(args);
}
}
}

View File

@ -61,7 +61,7 @@ namespace de4dot.cui {
};
}
public static int Main2(string[] args) {
public static int Main(string[] args) {
int exitCode = 0;
const string showAllMessagesEnvName = "SHOWALLMESSAGES";

View File

@ -20,7 +20,7 @@
namespace de4dot_x86 {
class Program {
static int Main(string[] args) {
return de4dot.cui.Program.Main2(args);
return de4dot.cui.Program.Main(args);
}
}
}