This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new 95d15cdeb No need for formatter comments here 95d15cdeb is described below commit 95d15cdebd39d985a9abc897071e405d76206c1c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Sep 4 10:59:31 2024 -0400 No need for formatter comments here --- src/test/java/org/apache/commons/lang3/time/StopWatchTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/java/org/apache/commons/lang3/time/StopWatchTest.java b/src/test/java/org/apache/commons/lang3/time/StopWatchTest.java index 1d8037d65..5a3fa48c2 100644 --- a/src/test/java/org/apache/commons/lang3/time/StopWatchTest.java +++ b/src/test/java/org/apache/commons/lang3/time/StopWatchTest.java @@ -209,11 +209,9 @@ public class StopWatchTest extends AbstractLangTest { @Test public void testGetSplitDuration() { // Create a mock StopWatch with a time of 2:59:01.999 - // @formatter:off final StopWatch watch = StopWatch.createStarted(); watch.split(); set(watch, 123456); - // @formatter:on assertEquals(Duration.ofNanos(123456), watch.getSplitDuration()); }