From 24c57269af980338d8c688be2529561c9f20d0d4 Mon Sep 17 00:00:00 2001 From: Jason Longshore Date: Tue, 4 Dec 2018 02:46:17 -0600 Subject: [PATCH] Fix punctuation in incompatible version warning (#26035) --- akka-actor/src/main/scala/akka/util/ManifestInfo.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-actor/src/main/scala/akka/util/ManifestInfo.scala b/akka-actor/src/main/scala/akka/util/ManifestInfo.scala index f541217e31..14b41c8a40 100644 --- a/akka-actor/src/main/scala/akka/util/ManifestInfo.scala +++ b/akka-actor/src/main/scala/akka/util/ManifestInfo.scala @@ -175,7 +175,7 @@ final class ManifestInfo(val system: ExtendedActorSystem) extends Extension { "Detected possible incompatible versions on the classpath. " + s"Please note that a given $productName version MUST be the same across all modules of $productName " + "that you are using, e.g. if you use [{}] all other modules that are released together MUST be of the " + - "same version. Make sure you're using a compatible set of libraries." + + "same version. Make sure you're using a compatible set of libraries. " + "Possibly conflicting versions [{}] in libraries [{}]", highestVersion, conflictingVersions, fullInfo) }