-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Author was removed in Pharo 13: disregard setting the author when usi…
…ng version 13...
- Loading branch information
Showing
3 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...easide-Pharo-Welcome.package/GRPharoPlatform.extension/instance/seasideIsAuthorNameSet.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*seaside-pharo-welcome | ||
seasideIsAuthorNameSet | ||
^ Author fullNamePerSe isEmptyOrNil not | ||
|
||
SystemVersion current major >= 13 ifTrue:[ ^ true. "Author does not exist anymore" ]. | ||
^ (Smalltalk at: #Author) fullNamePerSe isEmptyOrNil not |
4 changes: 3 additions & 1 deletion
4
...Seaside-Pharo-Welcome.package/GRPharoPlatform.extension/instance/seasideSetAuthorName..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*seaside-pharo-welcome | ||
seasideSetAuthorName: anAuthorName | ||
Author fullName: anAuthorName | ||
|
||
SystemVersion current major >= 13 ifTrue:[ ^ self error: 'Author does not exist anymore.' ]. | ||
(Smalltalk at: #Author) fullName: anAuthorName |