--- a/eric7/Graphics/PackageItem.py Fri May 21 17:54:15 2021 +0200 +++ b/eric7/Graphics/PackageItem.py Fri May 21 18:01:11 2021 +0200 @@ -202,27 +202,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 = [ - "no_modules={0}".format(self.noModules), - "name={0}".format(self.model.getName()), - ] - modules = self.model.getModules() - if modules: - entries.append("modules={0}".format("||".join(modules))) - - return ", " + ", ".join(entries) - def parseItemDataString(self, version, data): """ Public method to parse the given persistence data.