X Tutup
Skip to content

Commit c88f3d2

Browse files
author
Johan Brichau
committed
Set the deprecated utf8 coded as the default for now
1 parent 5120c51 commit c88f3d2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
utf8 codec
22
setutf8CodectoZinc
33
"Set to GRPharoUtf8Codec that uses Zinc for utf8 encoding"
4-
utf8DeprecatedCodecFlag := nil
4+
utf8DeprecatedCodecFlag := false

repository/Grease-Pharo90-Core.package/GRPharoPlatform.class/instance/utf8CodecClass.st

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ utf8 codec
22
utf8CodecClass
33

44
^ utf8DeprecatedCodecFlag
5-
ifNil: [ GRPharoUtf8Codec ]
6-
ifNotNil: [ GRPharoDeprecatedUtf8Codec ]
5+
ifNil: [ GRPharoDeprecatedUtf8Codec ]
6+
ifNotNil: [ utf8DeprecatedCodecFlag
7+
ifTrue:[ GRPharoDeprecatedUtf8Codec ]
8+
ifFalse: [ GRPharoUtf8Codec ] ]

0 commit comments

Comments
 (0)
X Tutup