diff --git a/.vs/DataOrganizer/v16/.suo b/.vs/DataOrganizer/v16/.suo index 77deaaa..d63bc1c 100644 Binary files a/.vs/DataOrganizer/v16/.suo and b/.vs/DataOrganizer/v16/.suo differ diff --git a/DataOrganizer/ProfileManager.cs b/DataOrganizer/ProfileManager.cs index 08024eb..87587e7 100644 --- a/DataOrganizer/ProfileManager.cs +++ b/DataOrganizer/ProfileManager.cs @@ -21,7 +21,6 @@ namespace DataOrganizer private List NamingConventions { get; } private Dictionary Profiles { get; } = new Dictionary(); private Dictionary FolderGroups { get; } = new Dictionary(); - private DB.FolderGroup ActiveFolderGroup { get; set; } public ProfileManager() { @@ -201,13 +200,6 @@ namespace DataOrganizer private void InsertGroupName_Click(object sender, EventArgs e) { - if (FolderGroups.ContainsKey(FolderNameTextBox.Text)) - { - MessageBox.Show($"'{FolderNameTextBox.Text}' already exists as a Folder Group. Duplicate names are not allowed.", "Duplication Error", MessageBoxButtons.OK, MessageBoxIcon.Error); - FolderNameTextBox.Focus(); - return; - } - FolderGroupPathTextBox.Text = FolderGroupPathTextBox.Text.TrimEnd(new char[] { '\\' }); if(GetSelectedFolderGroup(out DB.FolderGroup folderGroup))