Skip to content

Commit

Permalink
Merge pull request #19093 from geoand/#19090
Browse files Browse the repository at this point in the history
Fix NPE in RuntimeUpdatesProcessor
  • Loading branch information
stuartwdouglas authored Jul 29, 2021
2 parents a519ded + 420e95e commit d8d04a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ public void handleChanges(Collection<FileChangeEvent> changes) {
testClassChangeWatcher.watchPath(path.toFile(), callback);
}
}
testClassChangeTimer = new Timer("Test Compile Timer", true);
if (!nonExistent.isEmpty()) {
{
testClassChangeTimer = new Timer("Test Compile Timer", true);
testClassChangeTimer.schedule(new TimerTask() {
@Override
public void run() {
Expand Down

0 comments on commit d8d04a1

Please sign in to comment.