Skip to content

Commit

Permalink
Set the deprecated utf8 coded as the default for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Johan Brichau committed Jan 31, 2021
1 parent 5120c51 commit c88f3d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
utf8 codec
setutf8CodectoZinc
"Set to GRPharoUtf8Codec that uses Zinc for utf8 encoding"
utf8DeprecatedCodecFlag := nil
utf8DeprecatedCodecFlag := false
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ utf8 codec
utf8CodecClass

^ utf8DeprecatedCodecFlag
ifNil: [ GRPharoUtf8Codec ]
ifNotNil: [ GRPharoDeprecatedUtf8Codec ]
ifNil: [ GRPharoDeprecatedUtf8Codec ]
ifNotNil: [ utf8DeprecatedCodecFlag
ifTrue:[ GRPharoDeprecatedUtf8Codec ]
ifFalse: [ GRPharoUtf8Codec ] ]

0 comments on commit c88f3d2

Please sign in to comment.