()
| 92 | needsPassword = doc.needsPassword(); |
| 93 | } |
| 94 | public void run() { |
| 95 | ViewerCore.this.doc = doc; |
| 96 | ViewerCore.this.acceleratorPath = acceleratorPath; |
| 97 | if (needsPassword) { |
| 98 | String password = callback.askPassword(); |
| 99 | if (password != null) |
| 100 | checkPassword(password, onException); |
| 101 | } |
| 102 | else |
| 103 | loadDocument(onException); |
| 104 | } |
| 105 | public void exception(Throwable t) { |
| 106 | ViewerCore.this.acceleratorPath = null; |
| 107 | ViewerCore.this.doc = null; |
nothing calls this directly
no test coverage detected