Skip to content

Commit

Permalink
Merge pull request #71 from theseion/fix-macroman-encoding-lookup
Browse files Browse the repository at this point in the history
Fix macroman encoding lookup
  • Loading branch information
Johan Brichau authored Dec 15, 2018
2 parents eca45ab + d170a3f commit 21fab76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 allEncodingNames
^ (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 allEncodingNames
^ (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 allEncodingNames
^ (TextConverter allSubclasses gather: [ :class | class encodingNames ]) asSet asOrderedCollection
removeAllFoundIn: GRPharoLatin1Codec supportedEncodingNames;
removeAllFoundIn: UTF8TextConverter encodingNames;
yourself

0 comments on commit 21fab76

Please sign in to comment.