removed j letter from exception message

Not sure, but it seems like a typo.
This commit is contained in:
Mehmet
2020-12-13 21:45:48 +03:00
committed by Soby Chacko
parent 83cfdfc532
commit 69c5b67126

View File

@@ -109,7 +109,7 @@ public class InteractiveQueryService {
if (store != null) {
return store;
}
throw new IllegalStateException("Error when retrieving state store: j " + storeName, throwable);
throw new IllegalStateException("Error when retrieving state store: " + storeName, throwable);
});
}