X Tutup
Skip to content

Commit d61eb7c

Browse files
committed
Fix macroman encoding lookup in Grease-Pharo70-Core
1 parent 061dfed commit d61eb7c

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

repository/Grease-Pharo70-Core.package/Behavior.extension/methodProperties.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

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

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

5-
^ TextConverter allEncodingNames
6-
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
5+
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asOrderedCollection removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
76
removeAllFoundIn: UTF8TextConverter encodingNames;
87
yourself

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

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)
X Tutup