diff --git a/src/CodeImport/DoItChunkImported.class.st b/src/CodeImport/DoItChunkImported.class.st index e9d26791866..babe4e8ec8e 100644 --- a/src/CodeImport/DoItChunkImported.class.st +++ b/src/CodeImport/DoItChunkImported.class.st @@ -5,7 +5,7 @@ Class { #name : #DoItChunkImported, #superclass : #SystemAnnouncement, #instVars : [ - 'content', + 'contents', 'requestor', 'logSource' ], @@ -13,13 +13,13 @@ Class { } { #category : #accessing } -DoItChunkImported >> content [ - ^ content +DoItChunkImported >> contents [ + ^ contents ] { #category : #accessing } -DoItChunkImported >> content: anObject [ - content := anObject +DoItChunkImported >> contents: anObject [ + contents := anObject ] { #category : #accessing }