X Tutup
Skip to content

Commit 21fab76

Browse files
author
Johan Brichau
authored
Merge pull request SeasideSt#71 from theseion/fix-macroman-encoding-lookup
Fix macroman encoding lookup
2 parents eca45ab + d170a3f commit 21fab76

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

repository/Grease-Pharo70-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 allEncodingNames
5+
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asSet asOrderedCollection
66
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
77
removeAllFoundIn: UTF8TextConverter encodingNames;
88
yourself

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 allEncodingNames
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 allEncodingNames
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