Removed duplicate from image uploaders

This commit is contained in:
Vault.ooo 2021-04-19 20:25:31 +02:00
parent acbdd9202c
commit e38a54debd
2 changed files with 0 additions and 41 deletions

View file

@ -47,8 +47,6 @@ public enum ImageDestination
Chevereto,
[Description("vgy.me")]
Vgyme,
[Description("Vault.ooo (encrypted)")]
Vault_ooo,
CustomImageUploader, // Localized
FileUploader // Localized
}

View file

@ -1,39 +0,0 @@
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2020 ShareX Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
namespace ShareX.UploadersLib.ImageUploaders
{
public class Vault_oooUploaderService : ImageUploaderService
{
public override ImageDestination EnumValue { get; } = ImageDestination.Vault_ooo;
public override bool CheckConfig(UploadersConfig config) => true;
public override GenericUploader CreateUploader(UploadersConfig config, TaskReferenceHelper taskInfo)
{
return new FileUploaders.Vault_ooo();
}
}
}