Index: runtime/vm/object.cc |
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc |
index 0fc3bdebef1d193e7fccfb2b09e27b17bbe55392..1790d1415e1879071226c9e0e563d266ad7f0f52 100644 |
--- a/runtime/vm/object.cc |
+++ b/runtime/vm/object.cc |
@@ -6637,9 +6637,7 @@ static uword ZoneAllocator(intptr_t size) { |
const char* Bigint::ToCString() const { |
- // TODO(florian): Add a BigintOperations::ToDecCString method and use that |
- // here. |
- return BigintOperations::ToHexCString(*this, &ZoneAllocator); |
+ return BigintOperations::ToDecimalCString(*this, &ZoneAllocator); |
} |