Skip to content

Commit 2863272

Browse files
committed
Cleaned up spacing
1 parent 62792a9 commit 2863272

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

MiddleOut/Program.cs

100755100644
Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
using Ionic.Zip;
22
using System;
33
using System.Collections.Generic;
4-
using System.Security;
54
using CommandLine;
65
using CommandLine.Text;
7-
using System.Threading;
86
using System.IO;
9-
using System.Text;
107
using System.Linq;
118

129
namespace MiddleOut
@@ -19,7 +16,6 @@ class Program
1916

2017
public enum PathType { NonExisting = 0, File = 1, Directory = 2 };
2118

22-
2319
public class Options
2420
{
2521
public static Options Instance { get; set; }
@@ -55,9 +51,6 @@ static void DisplayHelp<T>(ParserResult<T> result, IEnumerable<Error> errs)
5551
System.Environment.Exit(1);
5652
}
5753

58-
59-
60-
6154
public static PathType GetPathType(string path)
6255
{
6356
if (File.Exists(path))
@@ -67,11 +60,6 @@ public static PathType GetPathType(string path)
6760
return PathType.NonExisting;
6861
}
6962

70-
71-
72-
73-
74-
7563
public static void Zipper(string[] zipList, string password, string location)
7664
{
7765
using (ZipFile zip = new ZipFile())

0 commit comments

Comments
 (0)