Fix imports referenced in quickstart. (#31469)

`jdocs.AbstractJavaTest;` is appearing as a suggestion of import to execute code samples of the quickstart, but this class is not present in the dependency library of Akka used in the quickstart, also it seems to not be used at all for quickstart purposes, only on the code that validates the documentation.
This commit is contained in:
Luan Kevin Ferreira 2022-07-13 04:39:19 -04:00 committed by GitHub
parent 5aee81a527
commit 5a1bccf5aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,9 +20,9 @@ import java.math.BigInteger;
import java.time.Duration;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.ExecutionException;
// #other-imports
import jdocs.AbstractJavaTest;
// #other-imports
import org.junit.*;