Skip to content

Commit 35e1a45

Browse files
committed
Remove Pillar-Tests-Core from baseline
Remove PRTemplatedWriter
1 parent 03c339b commit 35e1a45

3 files changed

Lines changed: 0 additions & 690 deletions

File tree

src/BaselineOfPillar/BaselineOfPillar.class.st

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ BaselineOfPillar >> baseline: spec [
2121
spec
2222
package: 'Pillar-Core'
2323
with: [ spec requires: #( 'OSSubprocess' 'Microdown')];
24-
package: 'Pillar-Tests-Core'
25-
with: [ spec requires: #( 'Pillar-Core') ];
2624

2725
package: 'Pillar-ExporterCore' with: [ spec requires: #( 'Pillar-Core' 'ContainersPropertyEnvironment' ) ];
2826

@@ -59,7 +57,6 @@ BaselineOfPillar >> baseline: spec [
5957
#(
6058
'Pillar-ExporterLaTeX'
6159
'Pillar-ExporterHTML'
62-
'Pillar-Tests-Core'
6360
'Pillar-Tests-Cli'
6461
'Pillar-Tests-Project'
6562
'Pillar-Tests-Integration' );

src/Pillar-ExporterCore/PRAbstractOutputDocument.class.st

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -200,17 +200,3 @@ PRAbstractOutputDocument >> writeDocument: aDocument [
200200
outputFile writeStreamDo: [ :stream | stream nextPutAll: templatedOutput ].
201201
^ outputFile
202202
]
203-
204-
{ #category : 'writing' }
205-
PRAbstractOutputDocument >> writer [
206-
207-
"If templating is active in the command, use the templated writer"
208-
| writer |
209-
writer := self basicWriter.
210-
project isTemplatable ifTrue: [
211-
writer := PRTemplatedWriter new
212-
outputDocument: self;
213-
defaultWriter: writer;
214-
yourself ].
215-
^ writer
216-
]

0 commit comments

Comments
 (0)