diff --git a/PipeViewer/ColumnSelection.cs b/PipeViewer/ColumnSelection.cs
index 67cfd0c..97bbfc0 100644
--- a/PipeViewer/ColumnSelection.cs
+++ b/PipeViewer/ColumnSelection.cs
@@ -73,10 +73,5 @@ namespace PipeViewer
OnselectColumnsUpdate(groupBoxNamedPipe, groupBoxAccess, groupBoxSecurityDescriptor, groupBoxTimeStamp);
this.Close();
}
-
- private void ColumnSelection_Load(object sender, EventArgs e)
- {
-
- }
}
}
diff --git a/Tests/NamedPipeServer/.idea/NamedPipeServer.iml b/Tests/NamedPipeServer/.idea/NamedPipeServer.iml
deleted file mode 100644
index 74d515a..0000000
--- a/Tests/NamedPipeServer/.idea/NamedPipeServer.iml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/NamedPipeServer/.idea/inspectionProfiles/profiles_settings.xml b/Tests/NamedPipeServer/.idea/inspectionProfiles/profiles_settings.xml
deleted file mode 100644
index 105ce2d..0000000
--- a/Tests/NamedPipeServer/.idea/inspectionProfiles/profiles_settings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/NamedPipeServer/.idea/misc.xml b/Tests/NamedPipeServer/.idea/misc.xml
deleted file mode 100644
index b188bb3..0000000
--- a/Tests/NamedPipeServer/.idea/misc.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/Tests/NamedPipeServer/.idea/modules.xml b/Tests/NamedPipeServer/.idea/modules.xml
deleted file mode 100644
index 2e241f3..0000000
--- a/Tests/NamedPipeServer/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/NamedPipeServer/.idea/vcs.xml b/Tests/NamedPipeServer/.idea/vcs.xml
deleted file mode 100644
index b2bdec2..0000000
--- a/Tests/NamedPipeServer/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/NamedPipeServer/.idea/workspace.xml b/Tests/NamedPipeServer/.idea/workspace.xml
deleted file mode 100644
index 540e0e3..0000000
--- a/Tests/NamedPipeServer/.idea/workspace.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1690973857373
-
-
- 1690973857373
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Tests/NamedPipeServer/main.py b/Tests/NamedPipeServer/main.py
deleted file mode 100644
index 05d9c61..0000000
--- a/Tests/NamedPipeServer/main.py
+++ /dev/null
@@ -1,36 +0,0 @@
-import time
-import sys
-import win32pipe, win32file, pywintypes
-
-
-def pipe_server():
- print("pipe server")
- count = 0
- pipe = win32pipe.CreateNamedPipe(
- r'\\.\pipe\Foo',
- win32pipe.PIPE_ACCESS_DUPLEX,
- win32pipe.PIPE_TYPE_MESSAGE | win32pipe.PIPE_READMODE_MESSAGE | win32pipe.PIPE_WAIT,
- 1, 65536, 65536,
- 0,
- None)
- try:
- print("waiting for client")
- win32pipe.ConnectNamedPipe(pipe, None)
- print("got client")
-
- while count < 10:
- print(f"writing message {count}")
- # convert to bytes
- some_data = str.encode(f"{count}")
- win32file.WriteFile(pipe, some_data)
- time.sleep(1)
- count += 1
-
- print("finished now")
- finally:
- win32file.CloseHandle(pipe)
-
-
-if __name__ == '__main__':
- pipe_server()
-
diff --git a/Tests/foo b/Tests/foo
deleted file mode 100644
index 5e1c309..0000000
--- a/Tests/foo
+++ /dev/null
@@ -1 +0,0 @@
-Hello World
\ No newline at end of file