From 77453cf80f93d5033a306b0afd41ed098fc163d4 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 17 Dec 2015 14:01:42 +0100 Subject: [PATCH] Remove old version of LegacyProfileReader This shouldn't have been committed. I suspect this came in via checking out a branch where this was still on the working tree and then going to a branch where it wasn't, and it kept the files and I thought LegacySettings was the plugin I had to commit. Contributes to issue CURA-37. --- plugins/LegacySettings/LegacySettings.py | 8 -------- plugins/LegacySettings/__init__.py | 21 --------------------- 2 files changed, 29 deletions(-) delete mode 100644 plugins/LegacySettings/LegacySettings.py delete mode 100644 plugins/LegacySettings/__init__.py diff --git a/plugins/LegacySettings/LegacySettings.py b/plugins/LegacySettings/LegacySettings.py deleted file mode 100644 index e2f6be50af..0000000000 --- a/plugins/LegacySettings/LegacySettings.py +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright (c) 2015 Ultimaker B.V. -# Cura is released under the terms of the AGPLv3 or higher. - -from UM.Extension import Extension - -class LegacySettings(Extension): - def __init__(self): - super().__init__() \ No newline at end of file diff --git a/plugins/LegacySettings/__init__.py b/plugins/LegacySettings/__init__.py deleted file mode 100644 index ee2eb46e77..0000000000 --- a/plugins/LegacySettings/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright (c) 2015 Ultimaker B.V. -# Cura is released under the terms of the AGPLv3 or higher. - -from . import LegacySettings - -from UM.i18n import i18nCatalog -catalog = i18nCatalog("cura") - -def getMetaData(): - return { - "plugin": { - "name": catalog.i18nc("@label", "GCode Reader"), - "author": "Ultimaker", - "version": "1.0", - "description": catalog.i18nc("@info:whatsthis", "Provides support for reading GCode files."), - "api": 2 - } - } - -def register(app): - return { "extension": LegacySettings.LegacySettings() }