()
| 220 | } |
| 221 | |
| 222 | @InvokableAction(name = "Resume", description = "Resumes the computer if it was previously paused", alternatives = "unpause;unfreeze;resume;play", defaultKeyMapping = {"meta+shift+pause", "alt+shift+pause"}) |
| 223 | final public void resume() { |
| 224 | doResume(); |
| 225 | getRunningProperty().set(true); |
| 226 | } |
| 227 | |
| 228 | @Override |
| 229 | public void reconfigure() { |
nothing calls this directly
no test coverage detected