--- a/eric7/Graphics/ModuleItem.py Fri May 21 17:54:15 2021 +0200 +++ b/eric7/Graphics/ModuleItem.py Fri May 21 18:01:11 2021 +0200 @@ -176,26 +176,6 @@ self.adjustAssociations() - def buildItemDataString(self): - """ - Public method to build a string to persist the specific item data. - - This string must start with ", " and should be built like - "attribute=value" with pairs separated by ", ". value must not - contain ", " or newlines. - - @return persistence data - @rtype str - """ - entries = [ - "name={0}".format(self.model.getName()), - ] - classes = self.model.getClasses() - if classes: - entries.append("classes={0}".format("||".join(classes))) - - return ", " + ", ".join(entries) - def parseItemDataString(self, version, data): """ Public method to parse the given persistence data.