Remove commented out code - CURA-4482

This commit is contained in:
ChrisTerBeke 2017-10-26 11:52:58 +02:00
parent 152f6f8405
commit 59580c0ade
2 changed files with 0 additions and 11 deletions

View file

@ -61,16 +61,6 @@ class GlobalStack(CuraContainerStack):
# \throws Exceptions.TooManyExtrudersError Raised when trying to add an extruder while we
# already have the maximum number of extruders.
def addExtruder(self, extruder: ContainerStack) -> None:
# CURA-4482
# extruder_count = self.getProperty("machine_extruder_count", "value")
# CURA-4482
# if extruder_count <= 1:
# Logger.log("i", "Not adding extruder[%s] to [%s] because it is a single-extrusion machine.",
# extruder.id, self.id)
# return
position = extruder.getMetaDataEntry("position")
if position is None:
Logger.log("w", "No position defined for extruder {extruder}, cannot add it to stack {stack}", extruder = extruder.id, stack = self.id)