I'm listing some code to look at.
There is this class that seems to implement Null pattern:
Object subclass: #SpartaUnimplementedPathBuilder
uses: TSpartaPathBuilder
instanceVariableNames: ''
classVariableNames: ''
package: 'Sparta-Core-Builders - Unimplemented'
Only referenced from SpartaCanvas:
pathBuilderClass
<return: #'TSpartaPathBuilder class'>
true ifFalse: [ self subclassResponsibility ].
^ SpartaUnimplementedPathBuilder
UPDATE:
I discovered the class when looking at Code Critics and wanted to take note. But minutes later I realized there is a Package tag with many classes with this "pattern"... something to understand.

I'm listing some code to look at.
There is this class that seems to implement Null pattern:
Only referenced from SpartaCanvas:
UPDATE:
I discovered the class when looking at Code Critics and wanted to take note. But minutes later I realized there is a Package tag with many classes with this "pattern"... something to understand.