Skip to content

Commit

Permalink
Remove duplicates from encoding names.
Browse files Browse the repository at this point in the history
Put back methodProperties.json and version files (required for Pharo 3 build)
  • Loading branch information
theseion committed Dec 15, 2018
1 parent 607d7ae commit d170a3f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"instance" : {
"fullName" : "JohanBrichau 12/9/2017 13:17"
},
"class" : { }
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ private
supportedEncodingNames
"answers the names of the encodings supported by this class"

^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asSet asOrderedCollection
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
removeAllFoundIn: UTF8TextConverter encodingNames;
yourself
Original file line number Diff line number Diff line change
@@ -0,0 +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 ())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ private
supportedEncodingNames
"answers the names of the encodings supported by this class"

^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asSet asOrderedCollection
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
removeAllFoundIn: UTF8TextConverter encodingNames;
yourself
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ private
supportedEncodingNames
"answers the names of the encodings supported by this class"

^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asSet asOrderedCollection
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
removeAllFoundIn: UTF8TextConverter encodingNames;
yourself

0 comments on commit d170a3f

Please sign in to comment.