chore: bump javafmt to 0.10.0 (#2081)

* chore: bump javafmt to 0.10.0

* chore: format with javafmt
This commit is contained in:
He-Pin(kerr) 2025-08-25 19:32:35 +08:00 committed by GitHub
parent b81b50edf6
commit 00b0a99278
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
351 changed files with 2266 additions and 1750 deletions

View file

@ -13,20 +13,20 @@
package jdocs.actor.fsm;
import static jdocs.actor.fsm.Events.Batch;
import static jdocs.actor.fsm.Events.Flush.Flush;
import static jdocs.actor.fsm.Events.Queue;
import static jdocs.actor.fsm.Events.SetTarget;
import java.util.LinkedList;
import jdocs.AbstractJavaTest;
import org.apache.pekko.actor.ActorRef;
import org.apache.pekko.actor.ActorSystem;
import org.apache.pekko.actor.Props;
import jdocs.AbstractJavaTest;
import org.apache.pekko.testkit.javadsl.TestKit;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import java.util.LinkedList;
import static jdocs.actor.fsm.Events.Batch;
import static jdocs.actor.fsm.Events.Queue;
import static jdocs.actor.fsm.Events.SetTarget;
import static jdocs.actor.fsm.Events.Flush.Flush;
// #test-code
public class BuncherTest extends AbstractJavaTest {