X Tutup
Skip to content

Commit d170a3f

Browse files
committed
Remove duplicates from encoding names.
Put back methodProperties.json and version files (required for Pharo 3 build)
1 parent 607d7ae commit d170a3f

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"instance" : {
3+
"fullName" : "JohanBrichau 12/9/2017 13:17"
4+
},
5+
"class" : { }
6+
}

repository/Grease-Pharo70-Core.package/GRPharoGenericCodec.class/class/supportedEncodingNames.st

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ private
22
supportedEncodingNames
33
"answers the names of the encodings supported by this class"
44

5-
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
5+
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asSet asOrderedCollection
6+
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
67
removeAllFoundIn: UTF8TextConverter encodingNames;
78
yourself

repository/Grease-Pharo70-Core.package/monticello.meta/version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(name 'Grease-Pharo70-Core-pmm.3' message 'Remove GRWorkingWriteStream from Pharo 6+- fixes #51' id '6941951f-d231-0d00-becb-c6e70e3dc98b' date '9 September 2018' time '3:40:40.007217 pm' author 'pmm' ancestors ((name 'Grease-Pharo70-Core-JohanBrichau.2' message 'Moved TBehavior>>fullName to Behavior>>fullName' id 'cd354707-491c-0d00-89b9-23ec01d5c93f' date '9 December 2017' time '1:17:57.536518 pm' author 'JohanBrichau' ancestors ((name 'Grease-Pharo70-Core-JohanBrichau.1' message 'branch from Grease-Pharo60-Core-JohanBrichau.4 to start supporting Pharo7 specifics' id '6aaa3511-a51a-0d00-a9b8-5e8804322501' date '18 November 2017' time '4:15:57.894626 pm' author 'JohanBrichau' ancestors () stepChildren ())) stepChildren ())) stepChildren ())

repository/Grease-Squeak5-Core.package/GRPharoGenericCodec.class/class/supportedEncodingNames.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ private
22
supportedEncodingNames
33
"answers the names of the encodings supported by this class"
44

5-
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection
5+
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asSet asOrderedCollection
66
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
77
removeAllFoundIn: UTF8TextConverter encodingNames;
88
yourself

repository/Grease-Squeak6-Core.package/GRPharoGenericCodec.class/class/supportedEncodingNames.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ private
22
supportedEncodingNames
33
"answers the names of the encodings supported by this class"
44

5-
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection
5+
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asSet asOrderedCollection
66
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
77
removeAllFoundIn: UTF8TextConverter encodingNames;
88
yourself

0 commit comments

Comments
 (0)
X Tutup