Browse Source

Removed unused code

CURA-5814
Jaime van Kessel 6 years ago
parent
commit
440dee2191
1 changed files with 1 additions and 11 deletions
  1. 1 11
      cura/PrintInformation.py

+ 1 - 11
cura/PrintInformation.py

@@ -30,17 +30,7 @@ catalog = i18nCatalog("cura")
 #   This class also mangles the current machine name and the filename of the first loaded mesh into a job name.
 #   This job name is requested by the JobSpecs qml file.
 class PrintInformation(QObject):
-    class SlicePass:
-        CurrentSettings = 1
-        LowQualitySettings = 2
-        HighQualitySettings = 3
-
-    class SliceReason:
-        SceneChanged = 1
-        SettingChanged = 2
-        ActiveMachineChanged = 3
-        Other = 4
-
+    
     UNTITLED_JOB_NAME = "Untitled"
 
     def __init__(self, application: "CuraApplication", parent = None) -> None: