Merge branch 'dev' into feature/QQQ-38-app-home-widgets

This commit is contained in:
2022-08-25 10:14:26 -05:00
41 changed files with 1273 additions and 410 deletions

View File

@ -198,6 +198,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");