You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UpdateService can be an application service
it can be started in a ProjectActivity
//register listeners on every project that opens
UpdatesService.getInstance().register(project)
UpdateVersionPanel needs to register at the service so the service can call its reset method
instead of
UpdatesService.getInstance(project).affectedPanel = this
do
UpdatesService.getInstance().registerPanel(this)
The text was updated successfully, but these errors were encountered:
UpdateService can be an application service
it can be started in a ProjectActivity
//register listeners on every project that opens
UpdatesService.getInstance().register(project)
UpdateVersionPanel needs to register at the service so the service can call its reset method
instead of
UpdatesService.getInstance(project).affectedPanel = this
do
UpdatesService.getInstance().registerPanel(this)
The text was updated successfully, but these errors were encountered: