Feedback from code reviews

This commit is contained in:
2022-08-22 17:03:47 -05:00
parent ed6d9f4cee
commit 3410c76c81
34 changed files with 1190 additions and 390 deletions

View File

@ -197,6 +197,12 @@ public class QJavalinImplementation
try
{
QInstance newQInstance = qInstanceHotSwapSupplier.get();
if(newQInstance == null)
{
LOG.warn("Got a null qInstance from hotSwapSupplier. Not hot-swapping.");
return;
}
new QInstanceValidator().validate(newQInstance);
QJavalinImplementation.qInstance = newQInstance;
LOG.info("Swapped qInstance");