This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new 411339e7b4 StringFormatter class
411339e7b4 is described below

commit 411339e7b4fec6b5264e68fc26b647b84edbc1f1
Author: James Bognar <[email protected]>
AuthorDate: Sat Nov 29 10:33:09 2025 -0500

    StringFormatter class
---
 .../java/org/apache/juneau/a/rttests/RoundTripLargeObjects_Test.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/juneau-utest/src/test/java/org/apache/juneau/a/rttests/RoundTripLargeObjects_Test.java
 
b/juneau-utest/src/test/java/org/apache/juneau/a/rttests/RoundTripLargeObjects_Test.java
index 7b52a59294..55a0175eba 100755
--- 
a/juneau-utest/src/test/java/org/apache/juneau/a/rttests/RoundTripLargeObjects_Test.java
+++ 
b/juneau-utest/src/test/java/org/apache/juneau/a/rttests/RoundTripLargeObjects_Test.java
@@ -118,11 +118,11 @@ class RoundTripLargeObjects_Test extends TestBase {
                startTime = System.currentTimeMillis();
                for (var i = 0; i < numRuns; i++)
                        r = s.serialize(a);
-               System.err.println(mformat("Average serialize time: 
{0,number}ms", (System.currentTimeMillis()-startTime)/numRuns)); // NOT DEBUG
+               System.err.println(f("Average serialize time: {0,number}ms", 
(System.currentTimeMillis()-startTime)/numRuns)); // NOT DEBUG
                startTime = System.currentTimeMillis();
                for (var i = 0; i < numRuns; i++)
                        p.parse(r, A.class);
-               System.err.println(mformat("Average parsed time: {0,number}ms", 
(System.currentTimeMillis()-startTime)/numRuns)); // NOT DEBUG
+               System.err.println(f("Average parsed time: {0,number}ms", 
(System.currentTimeMillis()-startTime)/numRuns)); // NOT DEBUG
        }
 
        public static class A {

Reply via email to