Change formatting to spaces
This commit is contained in:
parent
281b6f01a2
commit
5a09db7423
@ -6,7 +6,7 @@ root = true
|
||||
|
||||
# Indentation and spacing
|
||||
indent_size = 4
|
||||
indent_style = tab
|
||||
indent_style = space
|
||||
tab_width = 4
|
||||
|
||||
# Naming Conventions
|
||||
|
28
Program.cs
28
Program.cs
@ -1,16 +1,16 @@
|
||||
public class Program {
|
||||
static void Main(string[] args) {
|
||||
if (args.Length == 0) {
|
||||
Console.ForegroundColor = ConsoleColor.Red;
|
||||
Console.WriteLine("Please specify an option.");
|
||||
Console.ResetColor();
|
||||
} else {
|
||||
switch (args[0]) {
|
||||
case "":
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
static void Main(string[] args) {
|
||||
if (args.Length == 0) {
|
||||
Console.ForegroundColor = ConsoleColor.Red;
|
||||
Console.WriteLine("Please specify an option.");
|
||||
Console.ResetColor();
|
||||
} else {
|
||||
switch (args[0]) {
|
||||
case "":
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
28
pacserver.cs
28
pacserver.cs
@ -1,23 +1,23 @@
|
||||
public class Pacserver {
|
||||
public static string pacmanCacheDirectory { get; set; } = string.Empty;
|
||||
public static string determinePacmanCacheDirectory() {
|
||||
return pacmanCacheDirectory;
|
||||
}
|
||||
public static string pacmanCacheDirectory { get; set; } = string.Empty;
|
||||
public static string determinePacmanCacheDirectory() {
|
||||
return pacmanCacheDirectory;
|
||||
}
|
||||
|
||||
public static string pacmanDatabaseDirectory { get; set; } = string.Empty;
|
||||
public static string determinePacmanDatabaseDirectory() {
|
||||
return pacmanDatabaseDirectory;
|
||||
}
|
||||
public static string pacmanDatabaseDirectory { get; set; } = string.Empty;
|
||||
public static string determinePacmanDatabaseDirectory() {
|
||||
return pacmanDatabaseDirectory;
|
||||
}
|
||||
|
||||
public static void checkForNewerPackagesAndDatabases() {
|
||||
public static void checkForNewerPackagesAndDatabases() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public static void transferPacmanCache() {
|
||||
public static void transferPacmanCache() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public static void transferPacmanDatabases() {
|
||||
public static void transferPacmanDatabases() {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user