Skip to content

Commit d891adf

Browse files
committed
Squeak deprecates ifNotNilDo:, use ifNotNil: instead
1 parent dd54722 commit d891adf

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/FS-Core.package/FSDirectoryEntry.class/instance/printOn..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ printing
22
printOn: aStream
33

44
aStream nextPutAll: 'DirectoryEntry: '.
5-
reference ifNotNilDo: [:ref | aStream nextPutAll: reference printString].
5+
reference ifNotNil: [:ref | aStream nextPutAll: reference printString].

src/FS-Core.package/FSDirectoryEntry.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"modificationSeconds" : "StephaneDucasse 1/27/2011 22:15",
1818
"modificationTime" : "jr 1/1/2019 17:20",
1919
"pathSegments" : "CamilloBruni 8/12/2011 20:56",
20-
"printOn:" : "sd 2/11/2011 19:40",
20+
"printOn:" : "jr 9/10/2021 20:27",
2121
"readStream" : "CamilloBruni 8/12/2011 20:32",
2222
"reference" : "cwp 11/15/2009 21:54",
2323
"size" : "StephaneDucasse 1/27/2011 22:15",
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
{
1+
SquotTrackedObjectMetadata {
22
#objectClassName : #PackageInfo,
3+
#ignoredInstanceVariables : { },
4+
#objectsReplacedByNames : true,
35
#serializer : #SquotCypressCodeSerializer
46
}

0 commit comments

Comments
 (0)