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