From 6eb36b2b4f897097460231a97d2ab249c8d3a6d0 Mon Sep 17 00:00:00 2001 From: Pepijn van Oort Date: Mon, 23 Oct 2023 12:48:28 +0200 Subject: [PATCH] remove author name from code --- FarmmapsDownloadCL/DownloadCLApplication.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FarmmapsDownloadCL/DownloadCLApplication.cs b/FarmmapsDownloadCL/DownloadCLApplication.cs index 9b53ea0..01e8d5f 100644 --- a/FarmmapsDownloadCL/DownloadCLApplication.cs +++ b/FarmmapsDownloadCL/DownloadCLApplication.cs @@ -101,7 +101,7 @@ namespace FarmmapsDownloadCL //Write full list in csv format to clCsv. StreamWriter sw = new StreamWriter(clCsv); //Write metadata in top: when downloaded - sw.WriteLine($"Editeelt codelist {codelistname} downloaded on {DateTime.Now} with the FarmmapsDownloadCL application by Pepijn van Oort (WPR)"); + sw.WriteLine($"Editeelt codelist {codelistname} downloaded on {DateTime.Now} with the FarmmapsDownloadCL application"); //Generic, for any Codelist as long as it is also defined in FarmmapsDownloadCL.Models in string typerequest = "FarmmapsDownloadCL.Models." + className + ", FarmmapsDownloadCL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null";