Image Stripping is failing in D7.1 with UndefinedObject does not understand #lookup: in ExternalStructure class>>canUnderstand:. This checks the class's template but the class's ability to instantiate this has already been removed in BasicImageStripper>>compileExternalStructuresNow:.
To reproduce try deploying the XmlPad app in D7.1.
Adding #canUnderstand:to the array of removed selectors in BasicImageStripper>>compileExternalStructuresNow: fixes this:
self removeSelectors: #(#getFieldNames #canUnderstand:) of: ExternalStructure class
Image Stripping is failing in D7.1 with
UndefinedObject does not understand #lookup:
inExternalStructure class>>canUnderstand:
. This checks the class's template but the class's ability to instantiate this has already been removed inBasicImageStripper>>compileExternalStructuresNow:
.To reproduce try deploying the XmlPad app in D7.1.
Adding
#canUnderstand:
to the array of removed selectors inBasicImageStripper>>compileExternalStructuresNow:
fixes this: