X Tutup
Skip to content

Commit 0d3712c

Browse files
author
Johan Brichau
committed
Fix ScaledDecimal>>greaseString for Pharo1.4
1 parent c7ba26e commit 0d3712c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
*grease-pharo-core
22
greaseString
33
| converter |
4-
converter := GRNumberPrinter new precision: self scale.
4+
converter := GRSignPrinter new, (GRNumberPrinter new precision: self scale).
55
^ converter print: self

repository/Grease-Pharo-Core.package/ScaledDecimal.extension/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"class" : {
33
},
44
"instance" : {
5-
"greaseString" : "pmm 9/15/2013 12:01" } }
5+
"greaseString" : "JohanBrichau 7/15/2015 13:26" } }

0 commit comments

Comments
 (0)
X Tutup