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.
This commit is contained in:
Ghostkeeper 2015-12-17 14:01:42 +01:00
parent 513941097f
commit 77453cf80f
2 changed files with 0 additions and 29 deletions

View file

@ -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__()

View file

@ -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() }