(lastSeenVersion: Version, currentVersion: Version)
| 99 | } |
| 100 | |
| 101 | public static shouldCheckForMajorUpdates(lastSeenVersion: Version, currentVersion: Version) { |
| 102 | return !!currentVersion && (!lastSeenVersion || lastSeenVersion.isLesserThan(currentVersion)); |
| 103 | }; |
| 104 | |
| 105 | public addWorker(worker: TWorker) { |
| 106 | worker.setOnUnloading(() => { |
nothing calls this directly
no test coverage detected