Skip to content

Commit 16c6052

Browse files
authored
Merge branch 'Pharo14' into creanup/syc-new-method-extract-command2
2 parents 2e021cf + 0815575 commit 16c6052

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Clap-CommandLine/ClapPharoApplication.class.st

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ ClapPharoApplication >> execute [
4444
self shouldQuit ifFalse: [ self doNotQuitImage ]
4545
]
4646

47+
{ #category : 'private - printing' }
48+
ClapPharoApplication >> inform: aString [
49+
50+
self outputStreamDo: [ :out | out << aString << OSPlatform current lineEnding ]
51+
]
52+
4753
{ #category : 'execution' }
4854
ClapPharoApplication >> prepareImage [
4955
self positional: #rename ifPresent: [ :rename |

src/JenkinsTools-Core/ClapTestRunner.class.st

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ ClapTestRunner >> execute [
6565
self runPackages
6666
]
6767

68-
{ #category : 'private - printing' }
69-
ClapTestRunner >> inform: aString [
70-
71-
self outputStreamDo: [ :out | out << aString << OSPlatform current lineEnding ]
72-
]
73-
7468
{ #category : 'private - printing' }
7569
ClapTestRunner >> informResults: results [
7670

0 commit comments

Comments
 (0)